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
With Python 3.6 inspect.getargspec will be removed and instead inspect.signature should be used. So it would be useful to have a backport to versions before 3.3 for that (even though it was deprecated since 3.0, it wasn't replaced by inspect.signature until version 3.3).
The text was updated successfully, but these errors were encountered:
Okay while I don't get a DeprecationWarning in Python 3.4.3 I now get one since 3.5.0b1 so I'd appreciate if this could get backported before 3.5 is released.
With Python 3.6
inspect.getargspec
will be removed and insteadinspect.signature
should be used. So it would be useful to have a backport to versions before 3.3 for that (even though it was deprecated since 3.0, it wasn't replaced byinspect.signature
until version 3.3).The text was updated successfully, but these errors were encountered: