This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients A. Skrobov, christian.heimes, rhettinger, serhiy.storchaka
Date 2016-02-25.14:13:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1456409596.42.0.762956011933.issue26415@psf.upfronthosting.co.za>
In-reply-to
Content
It takes about 12 seconds to byte compile crash.py on my computer and less than half a second to import about 28 MB of byte code:


$ rm -rf crash.pyc __pycache__/
$ time python2.7 -c 'import crash'

real    0m11.930s
user    0m9.859s
sys     0m2.085s
$ time python2.7 -c 'import crash'

real    0m0.484s
user    0m0.401s
sys     0m0.083s
$ time python3.4 -c 'import crash'

real    0m12.327s
user    0m10.106s
sys     0m2.236s
$ time python3.4 -c 'import crash'

real    0m0.435s
user    0m0.367s
sys     0m0.069s
History
Date User Action Args
2016-02-25 14:13:16christian.heimessetrecipients: + christian.heimes, rhettinger, serhiy.storchaka, A. Skrobov
2016-02-25 14:13:16christian.heimessetmessageid: <1456409596.42.0.762956011933.issue26415@psf.upfronthosting.co.za>
2016-02-25 14:13:16christian.heimeslinkissue26415 messages
2016-02-25 14:13:16christian.heimescreate