]> granicus.if.org Git - python/commit
Issue #22869: Split pythonrun into two modules
authorNick Coghlan <ncoghlan@gmail.com>
Thu, 20 Nov 2014 11:39:37 +0000 (21:39 +1000)
committerNick Coghlan <ncoghlan@gmail.com>
Thu, 20 Nov 2014 11:39:37 +0000 (21:39 +1000)
commitd600951748d7a19cdb3e58a376c51ed804b630e6
treec28038ac0a6f2dbab55ceee1217ab8efb61cd64d
parent66fb349d6ca325f54f2f89986146ddb8f3bcbef4
Issue #22869: Split pythonrun into two modules

- interpreter startup and shutdown code moved to a new
  pylifecycle.c module
- Py_OptimizeFlag moved into the new module with the other
  global flags
16 files changed:
Include/Python.h
Include/object.h
Include/pydebug.h
Include/pyerrors.h
Include/pylifecycle.h [new file with mode: 0644]
Include/pythonrun.h
Lib/_pyio.py
Makefile.pre.in
Misc/NEWS
Modules/atexitmodule.c
Modules/signalmodule.c
Objects/object.c
Python/compile.c
Python/pylifecycle.c [new file with mode: 0644]
Python/pythonrun.c
Python/sysmodule.c