summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-37500: Revert commit 85ed1712e428f93408f56fc684816f9a85b0ebc0 (GH-1...Pablo Galindo2019-07-082-15/+9
* bpo-37369: Fixes path for sys.executable when running from the Microsoft Stor...Steve Dower2019-07-011-2/+12
* bpo-37267: Do not check for FILE_TYPE_CHAR in os.dup() on Windows (GH-14051) ...Miss Islington (bot)2019-06-171-12/+5
* bpo-37289: Remove 'if False' handling in the peephole optimizer (GH-14099) (G...Miss Islington (bot)2019-06-151-9/+3
* [3.7] bpo-37269: Correctly optimise conditionals with constant booleans (GH-1...Pablo Galindo2019-06-141-0/+5
* bpo-36829: Enhance PyErr_WriteUnraisable() (GH-13487)Victor Stinner2019-05-221-53/+84
* bpo-1875: Raise SyntaxError in invalid blocks that will be optimised away (GH...Miss Islington (bot)2019-05-172-9/+16
* bpo-36791: Safer detection of integer overflow in sum(). (GH-13080)Miss Islington (bot)2019-05-121-3/+5
* [3.7] bpo-34408: Prevent a null pointer dereference and resource leakage in `...Pablo Galindo2019-05-101-6/+10
* [3.7] bpo-9566: Fix compiler warnings on Windows (GH-12920)Victor Stinner2019-04-232-22/+48
* bpo-32849: Fix is_valid_fd() on FreeBSD (GH-12852) (GH-12863)Miss Islington (bot)2019-04-171-15/+23
* bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504)Miss Islington (bot)2019-03-254-11/+24
* bpo-35284: Fix the error handling in the compiler's compiler_call(). (GH-1062...Zackery Spytz2019-03-221-3/+5
* bpo-36236: Handle removed cwd at Python init (GH-12450)Victor Stinner2019-03-202-5/+13
* bpo-36262: Fix _Py_dg_strtod() memory leak (goto undfl) (GH-12276) (GH-12331)Victor Stinner2019-03-141-54/+25
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-144-9/+9
* bpo-33316: PyThread_release_lock always fails (GH-6541)Miss Islington (bot)2019-02-021-2/+3
* bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561)Miss Islington (bot)2019-01-151-10/+15
* bpo-34756: Silence only ImportError and AttributeError in sys.breakpointhook(...Miss Islington (bot)2019-01-141-0/+6
* bpo-35470: Fix a reference counting bug in _PyImport_FindExtensionObjectEx()....Miss Islington (bot)2019-01-101-1/+0
* [3.7] Bump copyright years to 2019. (GH-11406)Benjamin Peterson2019-01-021-1/+1
* bpo-35550: Fix incorrect Solaris define guards (GH-11275)Miss Islington (bot)2018-12-301-2/+2
* bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-110...Serhiy Storchaka2018-12-111-0/+14
* bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)Miss Islington (bot)2018-12-105-6/+18
* bpo-35452: Make PySys_HasWarnOptions() never raising an exception. (GH-11075)Miss Islington (bot)2018-12-101-1/+2
* bpo-35451: Fix reference counting for sys.warnoptions and sys._xoptions. (GH-...Miss Islington (bot)2018-12-101-2/+0
* bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033)Miss Islington (bot)2018-12-082-3/+3
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-073-3/+12
* bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10...Miss Islington (bot)2018-12-041-0/+1
* bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008)Miss Islington (bot)2018-11-301-4/+36
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Miss Islington (bot)2018-11-272-3/+4
* bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623) (GH-10718)Victor Stinner2018-11-261-18/+22
* bpo-34523: Fix C locale coercion on FreeBSD CURRENT (GH-10672) (GH-10673)Victor Stinner2018-11-232-4/+19
* Revert "bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)" (GH...Victor Stinner2018-11-222-25/+5
* bpo-28604: Fix localeconv() for different LC_MONETARY (GH-10606) (GH-10619)Victor Stinner2018-11-202-4/+17
* bpo-34725: Adds _Py_SetProgramFullPath so embedders may override sys.executab...Steve Dower2018-11-171-0/+21
* Add a missed PyErr_NoMemory() in symtable_new(). (GH-10576)Miss Islington (bot)2018-11-161-1/+3
* bpo-35239: _PySys_EndInit() copies module_search_path (GH-10532)Miss Islington (bot)2018-11-162-5/+25
* bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)Miss Islington (bot)2018-11-122-3/+3
* [3.7] bpo-35214: Initial clang MemorySanitizer support (GH-10479) (GH-10492)Gregory P. Smith2018-11-122-1/+12
* bpo-35193: Fix an off by one error in the RETURN_VALUE case. (GH-10418)Miss Islington (bot)2018-11-081-10/+12
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Miss Islington (bot)2018-11-051-1/+1
* bpo-26558: Fix Py_FatalError() with GIL released (GH-10267)Miss Islington (bot)2018-10-311-10/+25
* bpo-34403: Always implement _Py_GetForceASCII() (GH-10235)Victor Stinner2018-10-301-0/+6
* bpo-34403: Fix initfsencoding() for ASCII (GH-10233)Victor Stinner2018-10-302-0/+16
* bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705)Miss Islington (bot)2018-10-171-19/+5
* Fix an incorrect check in compiler_try_except(). (GH-9810)Miss Islington (bot)2018-10-121-1/+2
* Fix a possible decref of a borrowed reference in symtable.c. (GH-9786)Miss Islington (bot)2018-10-101-2/+4
* closes bpo-34868: Improve error message with '_' is combined with an invalid ...Miss Islington (bot)2018-10-011-8/+9
* bpo-34854: Fix compiling string annotations containing lambdas. (GH-9645)Miss Islington (bot)2018-09-301-4/+7