15
0

- Convert to pip-based build

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-JsonWeb?expand=0&rev=14
This commit is contained in:
2025-05-06 08:52:19 +00:00
committed by Git OBS Bridge
commit d210feb120
6 changed files with 133 additions and 0 deletions

13
python-311.patch Normal file
View File

@@ -0,0 +1,13 @@
Index: JsonWeb-0.8.2/jsonweb/decode.py
===================================================================
--- JsonWeb-0.8.2.orig/jsonweb/decode.py
+++ JsonWeb-0.8.2/jsonweb/decode.py
@@ -231,7 +231,7 @@ class ObjectHook(object):
def get_arg_spec(func):
- arg_spec = inspect.getargspec(func)
+ arg_spec = inspect.getfullargspec(func)
args = arg_spec.args
try: