[issue12598] Move sys variable initialization from import.c to sysmodule.c

2019-10-22 Thread STINNER Victor
STINNER Victor added the comment: No activity for 7 years, I close the issue. -- nosy: +vstinner resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker

[issue12598] Move sys variable initialization from import.c to sysmodule.c

2013-06-24 Thread Eric Snow
Changes by Eric Snow : -- assignee: -> eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue12598] Move sys variable initialization from import.c to sysmodule.c

2013-02-01 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: -brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue12598] Move sys variable initialization from import.c to sysmodule.c

2012-04-18 Thread Nick Coghlan
Nick Coghlan added the comment: It's about navigability/discovery of the source - to find out how the sys module gets initialised, you currently have to look in multiple places. The idea of the patch is to simplify that to the one logical place: sysmodule.c However, I'm not sure it's right to

[issue12598] Move sys variable initialization from import.c to sysmodule.c

2012-04-18 Thread Benjamin Peterson
Benjamin Peterson added the comment: I don't see the point. -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list m

[issue12598] Move sys variable initialization from import.c to sysmodule.c

2012-04-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: This looks sensible. -- components: +Interpreter Core nosy: +pitrou ___ Python tracker ___ ___ Pyth

[issue12598] Move sys variable initialization from import.c to sysmodule.c

2012-04-18 Thread Eric Snow
Eric Snow added the comment: The patch is out of date, but the question is still somewhat applicable. -- versions: +Python 3.3 ___ Python tracker ___ ___

[issue12598] Move sys variable initialization from import.c to sysmodule.c

2011-07-20 Thread Nick Coghlan
Changes by Nick Coghlan : -- nosy: +brett.cannon, ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue12598] Move sys variable initialization from import.c to sysmodule.c

2011-07-20 Thread Eric Snow
New submission from Eric Snow : Several import-related sys variables are set in _PyImportHooks_Init (in Python/import.c), which is called in Python/pythonrun.c. I have included a patch that moves that initialization from _PyImportHooks_Init to a new _SysImportState_Init function in Python/sys