summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-29922: Improve error messages in 'async with' (GH-6352)Miss Islington (bot)2018-04-041-0/+25
* bpo-33132: Fix more reference counting issues in the compiler. (GH-6323)Miss Islington (bot)2018-03-311-4/+2
* bpo-33053: -m now adds *starting* directory to sys.path (GH-6231) (#6236)Nick Coghlan2018-03-251-9/+21
* bpo-33042: Fix pre-initialization sys module configuration (GH-6157)Miss Islington (bot)2018-03-251-0/+162
* bpo-33132: Fix reference counting issues in the compiler. (GH-6209)Miss Islington (bot)2018-03-241-19/+12
* bpo-33041: Fixed jumping if the function contains an "async for" loop. (GH-6154)Serhiy Storchaka2018-03-231-27/+17
* [3.7] bpo-33021: Release the GIL during fstat() calls (GH-6019) (GH-6159)Miss Islington (bot)2018-03-201-1/+6
* bpo-32836: Remove obsolete code from symtable pass (GH-5680)Miss Islington (bot)2018-03-101-25/+0
* [3.7] bpo-33041: Add missed error checks when compile "async for" (GH-6053) (...Serhiy Storchaka2018-03-101-13/+7
* Add two missing error checks in hamt.c (GH-5851)Miss Islington (bot)2018-03-081-1/+7
* bpo-33005: Fix _PyGILState_Reinit() (GH-6001)Miss Islington (bot)2018-03-061-4/+23
* bpo-32838: Fix Python versions in the table of magic numbers. (GH-5658)Miss Islington (bot)2018-02-231-117/+117
* bpo-32604: Swap threads only if the interpreter is different. (gh-5783)Miss Islington (bot)2018-02-211-6/+14
* bpo-32869: Fix incorrect dst buffer size for MultiByteToWideChar (GH-5739)Miss Islington (bot)2018-02-181-1/+2
* bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-...Miss Islington (bot)2018-02-171-1/+57
* Fix some warnings produced by different compilers. (GH-5593) (GH-5600)Miss Islington (bot)2018-02-093-5/+5
* bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560) (GH-5...Miss Islington (bot)2018-02-061-3/+16
* [3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)Miss Islington (bot)2018-02-041-2/+2
* bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (GH-5507)Miss Islington (bot)2018-02-031-0/+1
* bpo-32303 - Consistency fixes for namespace loaders (GH-5481) (#5503)Barry Warsaw2018-02-032-1425/+1425
* bpo-32674: Improve the docstring for __import__ (GH-5339) (GH-5488)Miss Islington (bot)2018-02-021-3/+3
* bpo-32436: Fix compiler warning (GH-5483) (GH-5486)Miss Islington (bot)2018-02-021-0/+2
* Fix typo in hamt.c comments (GH-5478) (#5484)Miss Islington (bot)2018-02-021-1/+1
* [3.7] bpo-32711: Fix warnings for Python/ast_unparse.c (GH-5426) (#5475)Miss Islington (bot)2018-02-011-3/+7
* bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh...Eric Snow2018-01-301-1/+274
* 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