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 Niels.Heinen, brett.cannon, eric.araujo, jcea, pitrou, r.david.murray, vstinner
Date 2011-06-07.13:21:53
SpamBayes Score 1.354344e-06
Marked as misclassified No
Message-id <1307452909.3530.5.camel@localhost.localdomain>
In-reply-to <1307452381.21.0.720000044317.issue12238@psf.upfronthosting.co.za>
Content
> The difference is that logging is not imported at startup. So, however
> os (and friends, there are a lot of modules in sys.modules at startup)
> is imported, it is different from how readline.so is imported.

For the record, os is imported by the _io module:

    /* put os in the module state */
    state->os_module = PyImport_ImportModule("os");
    if (state->os_module == NULL)
        goto fail;

(in Modules/_io/_iomodule.c)

This probably happens before sys.path is
adjusted/tweaked/fixed/garbled/whatever.
History
Date User Action Args
2011-06-07 13:21:54pitrousetrecipients: + pitrou, brett.cannon, jcea, vstinner, eric.araujo, r.david.murray, Niels.Heinen
2011-06-07 13:21:53pitroulinkissue12238 messages
2011-06-07 13:21:53pitroucreate