summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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-115-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-051-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-181-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-132-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-091-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-181-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-111-2/+4
* closes bpo-34868: Improve error message with '_' is combined with an invalid ...Miss Islington (bot)2018-10-021-8/+9
* bpo-34854: Fix compiling string annotations containing lambdas. (GH-9645)Miss Islington (bot)2018-09-301-4/+7
* Drop confusing commented out code in pystrtod.c (GH-6072) (GH-9586)Victor Stinner2018-09-261-2/+0
* bpo-34762: Fix contextvars C API to use PyObject* pointer types. (GH-9473)Miss Islington (bot)2018-09-211-23/+62
* Revert "[3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off...Victor Stinner2018-09-191-2/+2
* [3.7] bpo-34589: Add -X coerce_c_locale option; C locale coercion off by defa...Victor Stinner2018-09-181-2/+2
* Make sure the line comes from the same node as the col offset. (GH-9189)Miss Islington (bot)2018-09-111-3/+3
* closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ...Miss Islington (bot)2018-09-111-18/+21
* bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077)Miss Islington (bot)2018-09-101-14/+16
* _Py_CoerceLegacyLocale() restores LC_CTYPE on fail (GH-9044) (GH-9046)Victor Stinner2018-09-031-1/+13
* [3.7] bpo-34485: stdout uses surrogateescape on POSIX locale (GH-8986) (GH-8987)Victor Stinner2018-08-291-12/+34
* bpo-34485: Fix _Py_InitializeCore() for C locale coercion (GH-8979) (GH-8981)Victor Stinner2018-08-281-4/+6
* bpo-34527: POSIX locale enables the UTF-8 Mode (GH-8972) (GH-8974)Victor Stinner2018-08-281-1/+1
* bpo-34503: Fix refleak in PyErr_SetObject() (GH-8934)Miss Islington (bot)2018-08-261-0/+1
* closes bpo-34474: Python/bltinmodule.c: Add missing NULL check in builtin_sum...Miss Islington (bot)2018-08-241-0/+5
* bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (...Miss Islington (bot)2018-08-221-0/+2
* [3.7] bpo-34247: Fix Python 3.7 initialization (#8659)Victor Stinner2018-08-051-46/+110
* bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (...Miss Islington (bot)2018-07-231-0/+4
* bpo-34190: Fix reference leak in call_function() (GH-8413) (GH-8418)Miss Islington (bot)2018-07-231-5/+8
* bpo-34126: Fix crashes while profiling invalid calls. (GH-8300) (GH-8371)Miss Islington (bot)2018-07-211-4/+10
* bpo-34008: Allow to call Py_Main() after Py_Initialize() (GH-8043) (GH-8352)Miss Islington (bot)2018-07-211-3/+20
* bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)Miss Islington (bot)2018-07-141-0/+2
* bpo-34080: Fix a memory leak in the compiler. (GH-8222)Miss Islington (bot)2018-07-111-1/+1
* bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192)Miss Islington (bot)2018-07-111-1/+3