summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-33612: Remove PyThreadState_Clear() assertion (GH-7069) (GH-7074)Miss Islington (bot)2018-05-231-1/+0
* [3.7] bpo-33475: Fix and improve converting annotations to strings. (GH-6774)...Serhiy Storchaka2018-05-202-537/+291
* bpo-33509: Fix _warnings for module_globals=None (GH-6833)Miss Islington (bot)2018-05-151-1/+8
* bpo-32604: Remove xid registry. (#6813)Eric Snow2018-05-151-258/+0
* bpo-28055: Fix unaligned accesses in siphash24(). (GH-6123)Miss Islington (bot)2018-05-131-13/+13
* [3.7] bpo-33363: raise SyntaxError for async for/with outside async functions...Zsolt Dollenstein2018-04-271-0/+7
* bpo-33330: Improve error handling in PyImport_Cleanup(). (GH-6564)Miss Islington (bot)2018-04-251-9/+24
* bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6...Miss Islington (bot)2018-04-241-5/+0
* Spelling fixes to docs, docstrings, and comments (GH-6374)Miss Islington (bot)2018-04-202-3/+3
* [3.7] bpo-33169: Remove values of `None` from sys.path_importer_cache when in...Brett Cannon2018-04-061-611/+614
* [3.7] bpo-29673: fix gdb scripts pystack and pystackv (GH-6126) (GH-6399)Miss Islington (bot)2018-04-061-1/+1
* bpo-33231: Fix potential leak in normalizestring() (GH-6386)Miss Islington (bot)2018-04-061-2/+0
* 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-071-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-201-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-161-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-051-3/+16
* [3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)Miss Islington (bot)2018-02-031-2/+2
* bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (GH-5507)Miss Islington (bot)2018-02-021-0/+1
* bpo-32303 - Consistency fixes for namespace loaders (GH-5481) (#5503)Barry Warsaw2018-02-022-1425/+1425
* bpo-32674: Improve the docstring for __import__ (GH-5339) (GH-5488)Miss Islington (bot)2018-02-011-3/+3
* bpo-32436: Fix compiler warning (GH-5483) (GH-5486)Miss Islington (bot)2018-02-011-0/+2
* Fix typo in hamt.c comments (GH-5478) (#5484)Miss Islington (bot)2018-02-011-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-291-1/+274
* bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181)Mark Shannon2018-01-294-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