commit | ab67281e95de1a88c4379a75a547f19a8ba5ec30 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Wed Jan 23 15:04:40 2019 +0100 |
committer | GitHub <noreply@github.com> | Wed Jan 23 15:04:40 2019 +0100 |
tree | a3043f7cc6e3f9467169b72d04d61425f0a565e0 | |
parent | cda73a5af2ff064ca82140342b3158851d43868f [diff] |
bpo-35713: Reorganize sys module initialization (GH-11658) * Rename _PySys_BeginInit() to _PySys_InitCore(). * Rename _PySys_EndInit() to _PySys_InitMain(). * Add _PySys_Create(). It calls _PySys_InitCore() which becomes private. * Add _PySys_SetPreliminaryStderr(). * Rename _Py_ReadyTypes() to _PyTypes_Init(). * Misc code cleanup.