Message137824
| 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. |
|