summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-30465: Fix C downcast warning on Windows in ast.c (#6593)Victor Stinner2018-04-301-1/+1
* bpo-33330: Write exceptions occurred in PyImport_Cleanup() to stderr. (GH-6606)Serhiy Storchaka2018-04-291-16/+20
* bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar2018-04-293-18/+18
* bpo-33363: raise SyntaxError for async for/with outside async functions (#6616)Zsolt Dollenstein2018-04-271-0/+7
* bpo-33334: Support NOP and EXTENDED_ARG in dis.stack_effect(). (#6566)Serhiy Storchaka2018-04-251-0/+4
* bpo-33330: Improve error handling in PyImport_Cleanup(). (GH-6564)Serhiy Storchaka2018-04-251-9/+24
* bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6...Pablo Galindo2018-04-251-5/+0
* Spelling fixes to docs, docstrings, and comments (GH-6374)Ville Skyttä2018-04-202-3/+3
* bpo-33298: Wrap only constants with _PyCode_ConstantKey() in the compiler. (G...Serhiy Storchaka2018-04-201-104/+117
* bpo-33299: Return an object itself for some types in _PyCode_ConstantKey(). (...Serhiy Storchaka2018-04-191-4/+6
* bpo-33270: Intern names for all anonymous code objects (#6472)Zackery Spytz2018-04-153-8/+8
* bpo-33169: Remove values of `None` from sys.path_importer_cache when invalida...Brett Cannon2018-04-061-616/+618
* bpo-29673: fix gdb scripts pystack and pystackv (GH-6126)Marcel Plch2018-04-061-1/+1
* bpo-33231: Fix potential leak in normalizestring() (GH-6386)INADA Naoki2018-04-061-2/+0
* bpo-29922: Improve error messages in 'async with' (GH-6352)Serhiy Storchaka2018-04-021-0/+25
* bpo-33132: Fix more reference counting issues in the compiler. (GH-6323)Serhiy Storchaka2018-03-311-4/+2
* bpo-33053: -m now adds *starting* directory to sys.path (GH-6231)Nick Coghlan2018-03-251-9/+21
* bpo-33042: Fix pre-initialization sys module configuration (GH-6157)Nick Coghlan2018-03-251-0/+162
* bpo-33132: Fix reference counting issues in the compiler. (GH-6209)Serhiy Storchaka2018-03-241-19/+12
* bpo-32932: More revealing error message when non-str objects in __all__ (GH-5...Xiang Zhang2018-03-241-1/+27
* bpo-33041: Rework compiling an "async for" loop. (#6142)Serhiy Storchaka2018-03-234-209/+155
* bpo-32489: Allow 'continue' in 'finally' clause. (GH-5822)Serhiy Storchaka2018-03-181-4/+0
* bpo-33021: Release the GIL during fstat() calls (GH-6019)Nir Soffer2018-03-111-1/+6
* Drop confusing commented out code in pystrtod.c (GH-6072)Siddhesh Poyarekar2018-03-111-2/+0
* bpo-32925: Optimized iterating and containing test for literal lists (GH-5842)Serhiy Storchaka2018-03-111-2/+17
* bpo-32946: Speed up "from ... import ..." from non-packages. (GH-5873)Serhiy Storchaka2018-03-112-262/+273
* bpo-33041: Add missed error checks when compile "async for" (#6053)Serhiy Storchaka2018-03-101-14/+7
* bpo-33041: Fixed bytecode generation for "async for" with a complex target. (...Serhiy Storchaka2018-03-101-2/+2
* Add two missing error checks in hamt.c (GH-5851)Xiang Zhang2018-03-081-1/+7
* bpo-33005: Fix _PyGILState_Reinit() (#6001)Victor Stinner2018-03-061-4/+23
* Fix strncpy warning with gcc 8 (#5840)Siddhesh Poyarekar2018-03-061-2/+2
* closes bpo-32980 Remove _PyFrame_Init (GH-5965)Thomas Nyberg2018-03-041-3/+0
* bpo-32836: Remove obsolete code from symtable pass (GH-5680)Nitish Chandra2018-02-261-25/+0
* bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter t...Serhiy Storchaka2018-02-226-4053/+4132
* bpo-32838: Fix Python versions in the table of magic numbers. (#5658)Serhiy Storchaka2018-02-221-117/+117
* bpo-32604: Swap threads only if the interpreter is different. (gh-5778)Eric Snow2018-02-201-6/+14
* bpo-32869: Fix incorrect dst buffer size for MultiByteToWideChar (#5739)Alexey Izbyshev2018-02-181-1/+2
* bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-...Eric Snow2018-02-171-1/+57
* Fix some warnings produced by different compilers. (#5593)Serhiy Storchaka2018-02-093-5/+5
* bpo-32777: Fix _Py_set_inheritable async-safety in subprocess (GH-5560)Alexey Izbyshev2018-02-061-3/+16
* bpo-10544: Disallow "yield" in comprehensions and generator expressions. (GH-...Serhiy Storchaka2018-02-041-24/+7
* bpo-32746: Fix multiple typos (GH-5144)Leo Arias2018-02-041-2/+2
* bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (#5507)Eric Snow2018-02-031-0/+1
* bpo-32303 - Consistency fixes for namespace loaders (#5481)Barry Warsaw2018-02-022-1425/+1425
* bpo-32747: Remove trailing spaces in docstrings. (GH-5491)oldk2018-02-021-3/+3
* bpo-32674: Improve the docstring for __import__ (GH-5339)oldk2018-02-021-3/+3
* bpo-32436: Fix compiler warning (#5483)Yury Selivanov2018-02-021-0/+2
* Fix typo in hamt.c comments (#5478)Dmitry Alimov2018-02-021-1/+1
* bpo-32711: Fix warnings for Python/ast_unparse.c (#5426)Stéphane Wirtel2018-02-011-3/+7
* bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh...Eric Snow2018-01-301-1/+274