summaryrefslogtreecommitdiffstats
path: root/Python/preconfig.c
Commit message (Collapse)AuthorAgeFilesLines
...
* bpo-36142: Add _PyPreConfig structure (GH-12172)Victor Stinner2019-03-051-0/+113
| | | | | | * Add _PyPreConfig structure * Move 'ignored' and 'use_environment' fields from _PyCoreConfig to _PyPreConfig * Add a new "_PyPreConfig preconfig;" field to _PyCoreConfig
* bpo-36142: Add preconfig.c (GH-12128)Victor Stinner2019-03-011-0/+92
* Add _PyArgv_Decode() function * Move _Py_ClearFileSystemEncoding() and _Py_SetFileSystemEncoding() to preconfig.c.