-
-
Notifications
You must be signed in to change notification settings - Fork 31.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
Improve import time of various stdlib modules #118761
Comments
Sure! |
I've opened a PR over at the
@layday were you planning on tackling these?
This seems to be solved on main, |
importlib.metadata
Co-authored-by: Adam Turner <[email protected]>
Co-authored-by: Adam Turner <[email protected]>
This has been merged and released in version 8.4 of
I've submitted python/importlib_metadata#502 that defers zip import, and python/importlib_metadata#503 which defers |
(removing the 3.14 label since features always target the main branch) |
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <[email protected]>
Importing `pickle` is now roughly 25% faster. Importing the `re` module is no longer needed and thus `re` is no more implicitly exposed as `pickle.re`. --------- Co-authored-by: Adam Turner <[email protected]>
@picnixz: I suggest to close this issue. |
Since |
I haven't looked at the code but it would be a big win if that is possible since basically everything imports that nowadays and there is no way to avoid it. |
@TeamSpen210 something like that could be worthwhile but the maintainability cost might be pretty high. Also, there's a risk that programs that do use a lot of things from There might also be interpreter-level things we can do to speed up specific operations that often happen at import time. For example, creating an empty class is about 70x slower than creating an empty function—maybe we can improve that. |
Co-authored-by: Adam Turner <[email protected]>
I looked at some profiling data and feel there's good opportunities for optimizing class creation if someone is interested in hacking on |
annotationlib is used quite a few times in typing.py, but I think the usages are just rare enough that this makes sense. The import would get triggered by: - Using get_type_hints(), evaluate_forward_ref(), and similar introspection functions - Using a string annotation anywhere that goes through _type_convert (e.g., "Final['x']" will trigger an annotationlib import in order to access the ForwardRef class). - Creating a TypedDict or NamedTuple (unless it's empty or PEP 563 is on). Lots of programs will want to use typing without any of these, so the tradeoff seems worth it.
annotationlib is used quite a few times in typing.py, but I think the usages are just rare enough that this makes sense. The import would get triggered by: - Using get_type_hints(), evaluate_forward_ref(), and similar introspection functions - Using a string annotation anywhere that goes through _type_convert (e.g., "Final['x']" will trigger an annotationlib import in order to access the ForwardRef class). - Creating a TypedDict or NamedTuple (unless it's empty or PEP 563 is on). Lots of programs will want to use typing without any of these, so the tradeoff seems worth it.
For |
Co-authored-by: Bénédikt Tran <[email protected]> Co-authored-by: Peter Bierma <[email protected]>
Feature or enhancement
Proposal:
Following on from #109653, further improvements can be made to import times.
Links to previous discussion of this feature:
https://discuss.python.org/t/deferred-computation-evalution-for-toplevels-imports-and-dataclasses/34173
For example:
importlib.metadata
is often used for tasks that need to happen at import, e.g. to enumerate/load entry point plug-ins, so it might be worth seeing if we can cut down its own import time a bit more.importlib.metadata
importszipfile
at the top for a function that won't be called in the vast majority of cases. It also importsimportlib.abc
, which in turn importsimportlib.resources
, to subclass an ABC with a single, non-abstract method - I assume redefining the method inimportlib.metadata
would be harmless. Some other less frequently-used imports which are only accessed once or twice, such asjson
, could also be tucked away in their calling functions.Linked PRs
pprint
#122725socket
by writingsocket.errorTab
as a constant and lazy import modules #121424mimetypes
#126979pickle
#128732re
import inbase64.b16decode
for a more efficient alternative #128736secrets
#128738csv
#128858tomllib
#128907pstats
andzipfile
by removing imports totyping
#128981sqlite3
#129118subprocess
#129427warnings
inthreading
#129428subprocess
(GH-129427) #129447subprocess
(GH-129427) #129448warnings
#129765traceback
#129811re
inlocale
#129860dataclasses
#129925cmd
module #130056subprocess
(GH-129427)" #130201subprocess
(GH-129427)" (GH-130201) #130204subprocess
(GH-129427)" (GH-130201) #130205sqlite3
#131796ast
#132024annotationlib
#132028enum._simple_enum
forannotationlib.Format
#132031shlex
#132036string
#132037email.quoprimime
removingre
import #132046_types
#132103The text was updated successfully, but these errors were encountered: