summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-22689: Copy the result of getenv() in sys_breakpointhook(). (GH-8194)Miss Islington (bot)2018-07-091-1/+14
* bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH...Miss Islington (bot)2018-07-091-4/+11
* Fix GCC warning in Python/hamt.c (GH-7618)Miss Islington (bot)2018-07-061-1/+1
* bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918)...Miss Islington (bot)2018-07-031-1/+2
* bpo-33985: Implement ContextVar.name attribute. (GH-7980)Miss Islington (bot)2018-06-281-0/+5
* bpo-33451: Close pyc files before calling PyEval_EvalCode() (GH-7884)Miss Islington (bot)2018-06-241-6/+9
* bpo-33932: Calling Py_Initialize() twice does nothing (GH-7845)Miss Islington (bot)2018-06-221-0/+5
* bpo-33803: Fix a crash in hamt.c (GH-7504) (GH-7505)Miss Islington (bot)2018-06-081-0/+2
* bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401)Miss Islington (bot)2018-06-041-1/+7
* bpo-31849: Fix warning in pyhash.c (GH-6799)Miss Islington (bot)2018-06-041-2/+2
* bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196)Miss Islington (bot)2018-05-311-1/+2
* bpo-32911: Revert bpo-29463. (GH-7121)Serhiy Storchaka2018-05-297-3266/+3220
* 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-251-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-071-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-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