summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-32030: Rewrite _PyMainInterpreterConfig (#4854)Victor Stinner2017-12-142-30/+34
* bpo-32030: Add _PyPathConfig_ComputeArgv0() (#4845)Victor Stinner2017-12-132-119/+115
* pymain_set_sys_argv() now copies argv (#4838)Victor Stinner2017-12-131-7/+24
* bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner2017-12-134-85/+127
* Test atexit shutdown mechanism in a subprocess (#4828)Antoine Pitrou2017-12-131-0/+2
* import.c: Fix a GCC warning (#4822)Victor Stinner2017-12-121-1/+1
* bpo-32230: Set sys.warnoptions with -X dev (#4820)Victor Stinner2017-12-121-51/+22
* bpo-32241: Add the const qualifire to declarations of umodifiable strings. (#...Serhiy Storchaka2017-12-127-15/+16
* byte swap the raw hash secrets (more bpo-32260) (#4773)Benjamin Peterson2017-12-091-1/+1
* fix my byte-swapping implementation (#4772)Benjamin Peterson2017-12-091-10/+10
* bpo-32260: don't byte swap siphash keys (#4771)Benjamin Peterson2017-12-091-3/+1
* closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575)Benjamin Peterson2017-12-096-2395/+2645
* Fix missing DECREF of mod. (#4749)Neil Schemenauer2017-12-081-0/+1
* bpo-32030: Add _PyImport_Fini2() (#4737)Victor Stinner2017-12-061-11/+41
* bpo-32030: Add pymain_get_global_config() (#4735)Victor Stinner2017-12-062-9/+12
* bpo-32030: pass interp to _PyImport_Init() (#4736)Victor Stinner2017-12-062-10/+2
* bpo-32030: Simplify _PyCoreConfig_INIT macro (#4728)Victor Stinner2017-12-051-7/+2
* Revert "bpo-32197: Try to fix a compiler error on OS X introduced in bpo-3203...Victor Stinner2017-12-042-58/+272
* Refactor PyImport_ImportModuleLevelObject(). (#4680)Neil Schemenauer2017-12-031-50/+57
* bpo-32176: Set CO_NOFREE in the code object constructor (GH-4675)Nick Coghlan2017-12-031-5/+0
* bpo-32197: Try to fix a compiler error on OS X introduced in bpo-32030. (#4681)Serhiy Storchaka2017-12-022-272/+58
* bpo-32030: _PyPathConfig_Init() sets home and program_name (#4673)Victor Stinner2017-12-022-43/+125
* bpo-32030: Add Python/pathconfig.c (#4668)Victor Stinner2017-12-012-55/+189
* bpo-32030: Don't call _PyPathConfig_Fini() in Py_FinalizeEx() (#4667)Victor Stinner2017-12-011-2/+0
* Don't hide unexpected errors in PyErr_WarnExplicitObject(). (#4585)Serhiy Storchaka2017-12-011-9/+10
* bpo-10544: Deprecate "yield" in comprehensions and generator expressions. (GH...Serhiy Storchaka2017-12-011-1/+30
* bpo-20891: Fix PyGILState_Ensure() (#4650)Victor Stinner2017-11-301-6/+18
* bpo-32030: Fix _Py_InitializeEx_Private() (#4649)Victor Stinner2017-11-301-6/+13
* bpo-32101: Add PYTHONDEVMODE environment variable (#4624)Victor Stinner2017-11-301-1/+4
* bpo-32030: Rework memory allocators (#4625)Victor Stinner2017-11-292-8/+20
* bpo-32150: Expand tabs to spaces in C files. (#4583)Serhiy Storchaka2017-11-286-27/+27
* bpo-27535: Fix memory leak with warnings ignore (#4489)Victor Stinner2017-11-271-4/+9
* bpo-32089: Use default action for ResourceWarning (#4584)Victor Stinner2017-11-271-3/+2
* mark fatal_error as noreturn (#4563)Benjamin Peterson2017-11-251-1/+1
* bpo-32030: Add _PyPathConfig_Init() (#4551)Victor Stinner2017-11-251-9/+19
* bpo-32030: Add _PyMainInterpreterConfig.program_name (#4548)Victor Stinner2017-11-241-4/+18
* bpo-32030: Add _PyMainInterpreterConfig_ReadEnv() (#4542)Victor Stinner2017-11-241-26/+19
* bpo-32125: Remove Py_UseClassExceptionsFlag flag (#4544)Victor Stinner2017-11-241-1/+0
* bpo-32096: Remove obj and mem from _PyRuntime (#4532)Victor Stinner2017-11-241-2/+0
* bpo-27535: Cleanup create_filter() (#4516)Victor Stinner2017-11-231-38/+18
* bpo-32030: Rewrite calculate_path() (#4521)Victor Stinner2017-11-231-8/+17
* bpo-32030: Add _PyMainInterpreterConfig.pythonhome (#4513)Victor Stinner2017-11-232-20/+49
* bpo-32030: Move PYTHONPATH to _PyMainInterpreterConfig (#4511)Victor Stinner2017-11-231-2/+2
* bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504)Victor Stinner2017-11-222-47/+54
* bpo-27535: Optimize warnings.warn() (#4508)Victor Stinner2017-11-221-42/+33
* bpo-32030: Add more options to _PyCoreConfig (#4485)Victor Stinner2017-11-213-11/+11
* bpo-32089: Fix warnings filters in dev mode (#4482)Victor Stinner2017-11-211-10/+27
* bpo-32088: Display Deprecation in debug mode (#4474)Victor Stinner2017-11-201-0/+7
* bpo-32043: New "developer mode": "-X dev" option (#4413)Victor Stinner2017-11-161-0/+8
* bpo-32030: Enhance Py_Main() (#4412)Victor Stinner2017-11-164-120/+84