[issue11051] Improve Python 3.3 startup time

2012-07-22 Thread Florent Xicluna
Changes by Florent Xicluna : -- nosy: +flox ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue11051] Improve Python 3.3 startup time

2012-05-16 Thread Antoine Pitrou
Antoine Pitrou added the comment: This is out of date now that importlib is the default import system. -- resolution: -> out of date status: open -> closed ___ Python tracker _

[issue11051] Improve Python 3.3 startup time

2012-02-19 Thread STINNER Victor
STINNER Victor added the comment: I opened the issue #14057 for the sysconfig parser. -- ___ Python tracker ___ ___ Python-bugs-list

[issue11051] Improve Python 3.3 startup time

2012-02-19 Thread STINNER Victor
STINNER Victor added the comment: Using the following patch, "./python -s -c pass" is 2x faster than without the patch! diff --git a/Lib/site.py b/Lib/site.py --- a/Lib/site.py +++ b/Lib/site.py @@ -518,7 +518,8 @@ def main(): known_paths = removeduppaths() if ENABLE_USER_SITE is Non

[issue11051] Improve Python 3.3 startup time

2012-02-19 Thread STINNER Victor
STINNER Victor added the comment: I changed the title of the issue because what matters is the total startup time, not how it is improved :-) -- title: system calls per import -> Improve Python 3.3 startup time ___ Python tracker