-
Notifications
You must be signed in to change notification settings - Fork 47
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
inspect.getfullargspec() is deprecated in python 3.8 #154
Comments
geargspec is used for:
|
I'll take a look on my side |
they say they are no longer deprecating it. however they still want to, and also the implelementaiton in python 3.6+ is much slower than it used to be, so I am considering vendoring a simple getfullargspec() into all my libraries, from the python 3.3 version. |
Yeah I saw that... https://docs.python.org/3.8/library/inspect.html#inspect.getfullargspec $ python3.8 ~/dev/testinspect.py # who use getfullargspec...
ArgSpec(args=['bim', 'bam', 'boom'], varargs=None, keywords=None, defaults=(True, 1)) It work with python 3.8 and |
I think vendoring a simple getfullargspec is a good idea, as you sayed we can inspire from |
Mike Bayer has proposed a fix for this issue in the master branch: Use vendored getfullargspec() https://gerrit.sqlalchemy.org/1289 |
see sqlalchemy/sqlalchemy#4674 as well as mako, alembic. basically everything
The text was updated successfully, but these errors were encountered: