Message113880
| Author |
vstinner |
| Recipients |
brett.cannon, lemburg, mark.dickinson, ncoghlan, orsenthil, pitrou, rhettinger, vstinner |
| Date |
2010年08月14日.09:40:42 |
| SpamBayes Score |
1.3275849e-05 |
| Marked as misclassified |
No |
| Message-id |
<1281778845.22.0.231736714642.issue9548@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
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? |
|