You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
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
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
inspect.getargspec
was removed in Py 3.11.inspect.signature
is the new thing in 3.3+.The text was updated successfully, but these errors were encountered: