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 pitrou
Recipients Arfrever, Keith.Dart, Michael.Felt, aixtools@gmail.com, christian.heimes, eric.araujo, hynek, kdart, knny-myer, martin.panter, methane, nailor, nvetoshkin, orsenthil, pitrou, r.david.murray, serhiy.storchaka, vstinner
Date 2017-09-28.23:07:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1506640077.15.0.466225441844.issue11063@psf.upfronthosting.co.za>
In-reply-to
Content
Crude import benchmark (Ubuntu):

* before:

$ time ./python -c "import uuid"

real	0m0.074s
user	0m0.056s
sys	0m0.012s

* after:

$ time ./python -c "import uuid"

real	0m0.030s
user	0m0.028s
sys	0m0.000s

* baseline:

$ time ./python -c pass

real	0m0.027s
user	0m0.024s
sys	0m0.000s
History
Date User Action Args
2017-09-28 23:07:57pitrousetrecipients: + pitrou, orsenthil, kdart, vstinner, christian.heimes, eric.araujo, Arfrever, r.david.murray, methane, nvetoshkin, knny-myer, nailor, Keith.Dart, hynek, martin.panter, serhiy.storchaka, Michael.Felt, aixtools@gmail.com
2017-09-28 23:07:57pitrousetmessageid: <1506640077.15.0.466225441844.issue11063@psf.upfronthosting.co.za>
2017-09-28 23:07:57pitroulinkissue11063 messages
2017-09-28 23:07:56pitroucreate