-
-
Notifications
You must be signed in to change notification settings - Fork 276
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
Decrease the time required to import astroid #1320
Comments
Doing #1103 would remove the import time from |
Another possible culprit is the use of |
Thanks for the link, interesting read. Looks like it was optimized in Python 3.7. |
By removing |
Steps to reproduce
python3 -X importtime -c 'import astroid'
Current behavior
It takes a half second to import astroid. This account for 92% of pylint's startup time in 2.13.0-dev0. See pylint-dev/pylint#4814 for details.
Expected behavior
Faster import, so pylint's can analyses empty file in less than half a second.
The text was updated successfully, but these errors were encountered: