Changes between Version 57 and Version 58 of DjangoSpecifications/Core/Threading


Ignore:
Timestamp:
Aug 11, 2008, 9:02:49 AM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoSpecifications/Core/Threading

    v57 v58  
    4040is not that common. No code where duplicated call would cause a considerable overhead or harmful side-effects was found during the review, so '''the "inefficiency issues" are really non-issues''' and listed below only for reference. In the multi-process case each process does initialize `foo` individually anyway.
    4141
    42 Note that as modules are cached in the Python interpreter, duplicate `__import__` calls don't re-import modules.
     42Note that as modules are cached in the Python interpreter (see `sys.modules`), duplicate `__import__` calls don't re-import modules.
    4343
    4444=== Errors due to incomplete initialization ===
Back to Top