summaryrefslogtreecommitdiff
path: root/dev-python/entrypoint2/files/entrypoint2-1.0-python311.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/entrypoint2/files/entrypoint2-1.0-python311.patch')
-rw-r--r--dev-python/entrypoint2/files/entrypoint2-1.0-python311.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/dev-python/entrypoint2/files/entrypoint2-1.0-python311.patch b/dev-python/entrypoint2/files/entrypoint2-1.0-python311.patch
deleted file mode 100644
index 95de1d3b689a..000000000000
--- a/dev-python/entrypoint2/files/entrypoint2-1.0-python311.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/entrypoint2/__init__.py b/entrypoint2/__init__.py
-index 63ab78b..a99a298 100644
---- a/entrypoint2/__init__.py
-+++ b/entrypoint2/__init__.py
-@@ -345,7 +345,7 @@ def _correct_args(func, kwargs):
- Convert a dictionary of arguments including __argv into a list
- for passing to the function.
- """
-- args = inspect.getargspec(func)[0]
-+ args = inspect.getfullargspec(func)[0]
- return [kwargs[arg] for arg in args] + kwargs["__args"]
-
-