[issue9548] locale can be imported at startup but relies on too many library modules

STINNER Victor report at bugs.python.org
Sat Aug 14 11:40:45 CEST 2010


STINNER Victor <victor.stinner at haypocalc.com> added the comment:

Antoine fixed #9589 by rewriting site.py code in C and calling it more much earlier: r83988.

This commit fixes the initial problem of this issue:

$ ./python -c 'import heapq; print(heapq.heapify)'
<built-in function heapify>
$ cat | ./python -c 'import heapq; print(heapq.heapify)'
<built-in function heapify>

Can we close this issue, or do you consider that it is still very important to not load too much modules at startup?

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue9548>
_______________________________________


More information about the Python-bugs-list mailing list