Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sprox doesn't work with Python 3.11 due to usage of inspect.getargspec #13

Closed
jackrosenthal opened this issue Oct 5, 2023 · 0 comments · Fixed by #14
Closed

sprox doesn't work with Python 3.11 due to usage of inspect.getargspec #13

jackrosenthal opened this issue Oct 5, 2023 · 0 comments · Fixed by #14

Comments

@jackrosenthal
Copy link
Contributor

inspect.getargspec was removed in Py 3.11. inspect.signature is the new thing in 3.3+.

jackrosenthal added a commit to jackrosenthal/sprox that referenced this issue Oct 8, 2023
inspect.getargspec() was deprecated in Python 3.3, and removed in
Python 3.11.  Change to using inspect.signature to see if the method
accepts keyword arguments.

Fixes: TurboGears#13
jackrosenthal added a commit to jackrosenthal/sprox that referenced this issue Feb 13, 2024
inspect.getargspec() was deprecated in Python 3.3, and removed in
Python 3.11.  Change to using inspect.signature to see if the method
accepts keyword arguments.

Fixes: TurboGears#13
@amol- amol- closed this as completed in #14 Feb 16, 2024
amol- pushed a commit that referenced this issue Feb 16, 2024
inspect.getargspec() was deprecated in Python 3.3, and removed in
Python 3.11.  Change to using inspect.signature to see if the method
accepts keyword arguments.

Fixes: #13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant