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, barry, brett.cannon, christian.heimes, eric.snow, pitrou, r.david.murray, vstinner
Date 2013-10-19.21:45:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382219102.2517.31.camel@fsol>
In-reply-to <1382218646.09.0.534911981579.issue19216@psf.upfronthosting.co.za>
Content
> > Also, have you read what I've just posted?
> 
> About the fuzziness of when startup is finished?  As implied above,
> I'd say at the end of Py_Initialize().

You only have imported a handful of modules by then. Real-world
applications will import many more afterwards.
Here's a little experiment (done with a system install of Python 2.7):

$ python -v -c pass 2>&1 | grep "^import" | wc -l
33
$ python -v `which hg` 2>&1 | grep "^import" | wc -l
117

Note that Mercurial has a lazy importer in order to improve startup
time, otherwise the number would be higher yet.
History
Date User Action Args
2013-10-19 21:45:34pitrousetrecipients: + pitrou, barry, brett.cannon, vstinner, christian.heimes, Arfrever, r.david.murray, eric.snow
2013-10-19 21:45:34pitroulinkissue19216 messages
2013-10-19 21:45:34pitroucreate