summaryrefslogtreecommitdiffstats
path: root/Python/coreconfig.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36710: Add runtime variable to Py_InitializeEx() (GH-12939)Victor Stinner2019-04-241-2/+2
* bpo-36471: Add _Py_RunMain() (GH-12618)Victor Stinner2019-03-291-98/+89
* bpo-36444: Rework _Py_InitializeFromConfig() API (GH-12576)Victor Stinner2019-03-271-17/+33
* bpo-36444: Add _PyCoreConfig._init_main (GH-12572)Victor Stinner2019-03-271-0/+2
* bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)Victor Stinner2019-03-271-11/+0
* bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)Victor Stinner2019-03-261-275/+299
* bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-261-50/+35
* bpo-36301: Add _Py_GetEnv() function (GH-12542)Victor Stinner2019-03-251-12/+12
* bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540)Victor Stinner2019-03-251-7/+66
* bpo-36301: Add _Py_PreInitializeFromConfig() (GH-12536)Victor Stinner2019-03-251-8/+54
* bpo-36301: Cleanup preconfig code (GH-12535)Victor Stinner2019-03-251-65/+21
* bpo-36301: Add _PyRuntimeState.preconfig (GH-12506)Victor Stinner2019-03-231-0/+22
* bpo-36301: Add _PyPreCmdline internal API (GH-12458)Victor Stinner2019-03-201-29/+38
* bpo-36356: Fix _PyCoreConfig_Read() (GH-12454)Victor Stinner2019-03-201-23/+32
* bpo-36301: Add _PyRuntime.pre_initialized (GH-12457)Victor Stinner2019-03-201-0/+7
* bpo-36301: _PyCoreConfig_Read() ensures that argv is not empty (GH-12347)Victor Stinner2019-03-151-0/+7
* bpo-36301: Add _PyWstrList structure (GH-12343)Victor Stinner2019-03-151-198/+166
* bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)Serhiy Storchaka2019-03-131-1/+1
* bpo-36142: _PyPreConfig_Read() sets LC_CTYPE (GH-12188)Victor Stinner2019-03-061-25/+16
* bpo-36142: Add _PyPreConfig.allocator (GH-12181)Victor Stinner2019-03-051-18/+2
* bpo-36142: Add _PyPreConfig.utf8_mode (GH-12174)Victor Stinner2019-03-051-334/+20
* bpo-36142: Add _PyPreConfig_ReadFromArgv() (GH-12173)Victor Stinner2019-03-051-35/+60
* bpo-36142: Add _PyPreConfig structure (GH-12172)Victor Stinner2019-03-051-31/+35
* bpo-31904: Add encoding support for VxWorks RTOS (GH-12051)pxinwr2019-03-041-1/+1
* bpo-36142: Add preconfig.c (GH-12128)Victor Stinner2019-03-011-80/+3
* bpo-36142: Move command line parsing to coreconfig.c (GH-12123)Victor Stinner2019-03-011-20/+955
* bpo-36142: Remove _PyMain structure (GH-12120)Victor Stinner2019-03-011-0/+8
* bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111)Victor Stinner2019-03-011-0/+1
* bpo-35336: Fix PYTHONCOERCECLOCALE=1 (GH-10806)Victor Stinner2018-11-301-2/+8
* bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executab...Steve Dower2018-11-181-0/+24
* bpo-35233: InitConfigTests tests more config vars (GH-10541)Victor Stinner2018-11-141-115/+76
* bpo-35233: Rewrite test_embed.InitConfigTests (GH-10524)Victor Stinner2018-11-131-0/+75
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-3/+3
* bpo-35081: Add pycore_fileutils.h (GH-10371)Victor Stinner2018-11-061-0/+1
* bpo-35081: Add _PyCoreConfig_AsDict() (GH-10362)Victor Stinner2018-11-061-0/+152
* bpo-35081: And pycore_lifecycle.h and pycore_pathconfig.h (GH-10273)Victor Stinner2018-11-011-0/+2
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-10-311-2/+2
* bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249)Victor Stinner2018-10-311-0/+1
* bpo-34523: Fix config_init_fs_encoding() for ASCII (GH-10232)Victor Stinner2018-10-301-20/+22
* Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" (GH-...Victor Stinner2018-09-191-89/+40
* bpo-34589: Add -X coerce_c_locale command line option (GH-9378)Victor Stinner2018-09-181-35/+79
* bpo-34589: C locale coercion off by default (GH-9073)Victor Stinner2018-09-171-1/+6
* bpo-34589: Make _PyCoreConfig.coerce_c_locale private (GH-9371)Victor Stinner2018-09-171-13/+13
* bpo-34523: Py_FileSystemDefaultEncoding NULL by default (GH-9003)Victor Stinner2018-08-291-18/+6
* bpo-34523: Fix config_init_fs_encoding() (GH-8991)Victor Stinner2018-08-291-1/+1
* bpo-34523: Add _PyCoreConfig.filesystem_encoding (GH-8963)Victor Stinner2018-08-291-3/+142
* bpo-34485: Add _PyCoreConfig.stdio_encoding (GH-8881)Victor Stinner2018-08-291-2/+179
* bpo-34485: Add _Py_ClearStandardStreamEncoding() (GH-8982)Victor Stinner2018-08-281-19/+99
* bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979)Victor Stinner2018-08-281-8/+10
* bpo-34403: On HP-UX, force ASCII for C locale (GH-8969)Victor Stinner2018-08-281-6/+9