summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-29137: Remove fpectl module (#4789)Nathaniel J. Smith2018-01-061-14/+6
* advance copyright years to 2018 (#5094)Benjamin Peterson2018-01-051-1/+1
* closes bpo-32460: ensure all non-static globals have initializers (#5061)Benjamin Peterson2017-12-312-11/+11
* bpo-32439: Clean up the code for compiling comparison expressions. (#5029)Serhiy Storchaka2017-12-301-23/+20
* bpo-32259: Make a TypeError message when unpack non-iterable more specific. (...Serhiy Storchaka2017-12-261-2/+10
* bpo-32372: Move __debug__ optimization to the AST level. (#4925)Serhiy Storchaka2017-12-252-51/+46
* remove the dynload_next.c file (closes bpo-32386) (#4957)Benjamin Peterson2017-12-221-111/+0
* bpo-32030: Add _Py_FindEnvConfigValue() (#4963)Victor Stinner2017-12-212-10/+56
* bpo-32030: Add _Py_EncodeLocaleRaw() (#4961)Victor Stinner2017-12-211-32/+72
* bpo-32030: Add _Py_EncodeUTF8_surrogateescape() (#4960)Victor Stinner2017-12-211-38/+4
* bpo-32030: Fix usage of memory allocators (#4953)Victor Stinner2017-12-201-5/+29
* bpo-32030: Complete _PyCoreConfig_Read() (#4946)Victor Stinner2017-12-201-13/+11
* bpo-32030: Add _PyCoreConfig.warnoptions (#4936)Victor Stinner2017-12-202-7/+2
* bpo-31901: atexit callbacks should be run at subinterpreter shutdown (#4611)Marcel Plch2017-12-202-11/+24
* bpo-32030: Cleanup pymain_main() (#4935)Victor Stinner2017-12-201-2/+2
* bpo-32030: Fix compiler warnings (#4921)Victor Stinner2017-12-192-15/+14
* bpo-32365: Fix a reference leak when compile __debug__. (#4916)Serhiy Storchaka2017-12-181-4/+4
* bpo-29469: peephole: Remove const_stack (GH-4879)INADA Naoki2017-12-181-81/+21
* fix up signedness in PyImport_ExtendInittab (#4831)Benjamin Peterson2017-12-161-5/+3
* bpo-29240, bpo-32030: Py_Main() re-reads config if encoding changes (#4899)Victor Stinner2017-12-163-57/+34
* bpo-29240: Don't define decode_locale() on macOS (#4895)Victor Stinner2017-12-151-0/+4
* bpo-30416: Protect the optimizer during constant folding. (#4860)Serhiy Storchaka2017-12-151-25/+130
* bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka2017-12-158-50/+53
* bpo-27169: The __debug__ constant is now optimized out at compile time. (#4880)Serhiy Storchaka2017-12-151-30/+15
* move pygetopt.h to internal (closes bpo-32264) (#4830)Benjamin Peterson2017-12-151-1/+1
* bpo-32030: Add _PyMainInterpreterConfig.executable (#4876)Victor Stinner2017-12-152-43/+32
* bpo-32030: Add _PyCoreConfig_Copy() (#4874)Victor Stinner2017-12-152-84/+43
* bpo-32329: Fix -R option for hash randomization (#4873)Victor Stinner2017-12-141-27/+10
* bpo-32226: Implementation of PEP 560 (core components) (#4732)Ivan Levkivskyi2017-12-141-3/+92
* bpo-29469: Optimize literal lists and sets iterating on the AST level. (#4866)Serhiy Storchaka2017-12-144-3775/+3761
* bpo-29469: Remove unnecessary peephole optimizer (GH-4863)INADA Naoki2017-12-141-15/+0
* bpo-32030: Add _PyMainInterpreterConfig.warnoptions (#4855)Victor Stinner2017-12-141-7/+18
* bpo-29469: Move constant folding to AST optimizer (GH-2858)INADA Naoki2017-12-145-3966/+4419
* 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