-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Python 3.6 incompatibility because of getargspec #2382
Comments
Thanks for the report! We use it here (https://github.com/pyca/cryptography/blob/master/src/cryptography/utils.py#L70) to check interface implementations, so we'll need to determine what the new approach needs to be. |
I think we just need to call On Tue, Sep 29, 2015 at 8:59 AM, Paul Kehrer notifications@github.com
"I disapprove of what you say, but I will defend to the death your right to |
@alex |
I love chains of deprecations! On Tue, Sep 29, 2015 at 9:35 AM, Terry Chia notifications@github.com
"I disapprove of what you say, but I will defend to the death your right to |
Complicating this issue is that Python 2.7 doesn't have |
Now on pywikibot we have solved that problem by replicating the result on Python 3.5+ by using |
use signature so stuff works on 3.6 -- fixes #2382
Hi, on testing pywikibot on 3.6 I noticed that your package uses
inspect.getargspec
which has been removed in 3.6 after it has been deprecated in 3.5 (although the documentation mentions it has been deprecated since Python 3).I know that Python 3.6 hasn't been released yet but I just wanted to let you know so you have enough time to prevent issues before it is released.
Here the Travis build: https://travis-ci.org/xZise/pywikibot-core/jobs/82446934
The text was updated successfully, but these errors were encountered: