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 serhiy.storchaka
Recipients barry, brett.cannon, eric.snow, ncoghlan, serhiy.storchaka, vstinner
Date 2015-09-18.16:40:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442594436.96.0.354047890712.issue25159@psf.upfronthosting.co.za>
In-reply-to
Content
This is not startup time, this is import time. All binaries were compiled in release mode. The regression is reproducible with other modules.

$ for i in `seq 5`; do ./python -I -m timeit -n1 -r1 "import zipfile"; done

Python 3.4:
1 loops, best of 1: 46 msec per loop
1 loops, best of 1: 45.3 msec per loop
1 loops, best of 1: 45.9 msec per loop
1 loops, best of 1: 45.1 msec per loop
1 loops, best of 1: 45.3 msec per loop

Python 3.5:
1 loops, best of 1: 49.1 msec per loop
1 loops, best of 1: 49.9 msec per loop
1 loops, best of 1: 50 msec per loop
1 loops, best of 1: 49.9 msec per loop
1 loops, best of 1: 53.7 msec per loop

Python 3.6:
1 loops, best of 1: 66.3 msec per loop
1 loops, best of 1: 64.2 msec per loop
1 loops, best of 1: 64.6 msec per loop
1 loops, best of 1: 65.1 msec per loop
1 loops, best of 1: 64.2 msec per loop
History
Date User Action Args
2015-09-18 16:40:36serhiy.storchakasetrecipients: + serhiy.storchaka, barry, brett.cannon, ncoghlan, vstinner, eric.snow
2015-09-18 16:40:36serhiy.storchakasetmessageid: <1442594436.96.0.354047890712.issue25159@psf.upfronthosting.co.za>
2015-09-18 16:40:36serhiy.storchakalinkissue25159 messages
2015-09-18 16:40:36serhiy.storchakacreate