summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-304-174/+123
* rename _imp initialization function to follow conventions (#5432)Benjamin Peterson2018-01-292-3/+2
* bpo-32707: Fix warnings in hamt.c (#5430)Yury Selivanov2018-01-291-3/+5
* bpo-20891: Py_Initialize() now creates the GIL (#4700)Victor Stinner2018-01-292-12/+17
* bpo-32688: Make why the line is commented out clear (GH-5405)Xiang Zhang2018-01-291-1/+1
* bpo-32436: Use PyThreadState_GET() in all hot paths (GH-5363)Yury Selivanov2018-01-271-3/+6
* bpo-32436: Make PyContextVar_Get a little bit faster (#5350)Yury Selivanov2018-01-261-1/+2
* bpo-32670: Enforce PEP 479. (#5327)Yury Selivanov2018-01-261-1/+1
* bpo-32591: fix abort in _PyErr_WarnUnawaitedCoroutine during shutdown (#5337)Nathaniel J. Smith2018-01-261-0/+7
* String annotations [PEP 563] (#4390)Guido van Rossum2018-01-263-2/+1189
* bpo-32436: Fix a refleak; var GC tracking; a GCC warning (#5326)Yury Selivanov2018-01-252-4/+6
* Fix 3rd level node's binary representation in HAMT algorithm description (#5319)Dmitry Alimov2018-01-251-1/+1
* bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...Serhiy Storchaka2018-01-255-1069/+1204
* bpo-32436: Don't use native popcount() (also fixes bpo-32641) (#5292)Yury Selivanov2018-01-242-15/+13
* bpo-32436: Fix potential NULL dereference (#5286)Yury Selivanov2018-01-231-0/+4
* bpo-32436: Remove a redundant assert (#5275)Yury Selivanov2018-01-231-1/+0
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-235-0/+4363
* bpo-29240: PyUnicode_DecodeLocale() uses UTF-8 on Android (#5272)Victor Stinner2018-01-221-0/+10
* bpo-32593: Drop FreeBSD 9 and older support (#5232)Victor Stinner2018-01-221-10/+0
* bpo-32591: Fix PyExc_WarnFormat call (follow-up commit) (#5263)Yury Selivanov2018-01-221-5/+4
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-215-0/+185
* bpo-9566: Fix size_t=>int downcast warnings (#5230)Victor Stinner2018-01-183-7/+7
* Fix typo in thread_nt.h code comment (GH-5211)hui shang2018-01-171-1/+1
* bpo-32544: Speed up hasattr() and getattr() (GH-5173)INADA Naoki2018-01-161-10/+11
* Implement the get_resource_reader() API for file system imports (#5168)Barry Warsaw2018-01-151-1248/+1307
* bpo-31900: Fix localeconv() encoding for LC_NUMERIC (#4174)Victor Stinner2018-01-152-11/+81
* bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)Victor Stinner2018-01-152-141/+248
* bpo-31113: Get rid of recursion in the compiler for normal control flow. (#3015)Serhiy Storchaka2018-01-111-78/+104
* bpo-29240: readline now ignores the UTF-8 Mode (#5145)Victor Stinner2018-01-101-28/+52
* bpo-24340: Fix estimation of the code stack size. (#5076)Serhiy Storchaka2018-01-093-1152/+1205
* bpo-31975 (PEP 565): Show DeprecationWarning in __main__ (GH-4458)Nick Coghlan2018-01-081-7/+33
* bpo-30579: Allow TracebackType creation and tb_next mutation from Python (GH-...Nathaniel J. Smith2018-01-072-26/+158
* 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