COMMITS
/ Objects/exceptions.c March 31, 2022
M
bpo-46775: OSError should call winerror_to_errno unconditionally on Windows (GH-32179)
Miss Islington (bot) committed
October 3, 2021
S
[3.10] Remove trailing spaces (GH-28709)
Serhiy Storchaka committed
July 27, 2021
M
bpo-34013: Move the Python 2 hints from the exception constructor to the parser (GH-27392)
Miss Islington (bot) committed
April 23, 2021
P
bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)
Pablo Galindo committed
April 16, 2021
P
bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444)
Pablo Galindo committed
April 14, 2021
P
bpo-38530: Offer suggestions on NameError (GH-25397)
Pablo Galindo committed
P
bpo-38530: Offer suggestions on AttributeError (#16856)
Pablo Galindo committed
March 29, 2021
I
bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)
Inada Naoki committed
February 19, 2021
V
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner committed
February 17, 2021
E
bpo-40170: Always define PyExceptionClass_Name() as a function (GH-24553)
Erlend Egeberg Aasland committed
November 21, 2020
S
bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446)
Serhiy Storchaka committed
September 23, 2020
V
bpo-41654: Fix compiler warning in MemoryError_dealloc() (GH-22387)
Victor Stinner committed
September 1, 2020
P
bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH-22020)
Pablo Galindo committed
June 23, 2020
V
bpo-40521: Make MemoryError free list per interpreter (GH-21086)
Victor Stinner committed
May 5, 2020
V
bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)
Victor Stinner committed
April 15, 2020
V
bpo-40268: Remove unused osdefs.h includes (GH-19532)
Victor Stinner committed
V
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Victor Stinner committed
V
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner committed
April 14, 2020
V
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner committed
April 11, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
Serhiy Storchaka committed
March 4, 2020
A
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester committed
August 25, 2019
N
bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15131)
Nick Coghlan committed
July 30, 2019
M
Fix typos in comments, docs and test names (#15018)
Min ho Kim committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 27, 2019
V
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner committed
May 17, 2019
V
bpo-36763: Add _PyInitError functions (GH-13395)
Victor Stinner committed
April 2, 2019
M
fix confusing argument name in unicodeobject.c (GH-12653)
Max Bernstein committed
February 25, 2019
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
January 24, 2019
E
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse committed
January 22, 2019
V
bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)
Victor Stinner committed
V
bpo-35713: Rework Python initialization (GH-11647)
Victor Stinner committed
December 17, 2018
S
bpo-35504: Fix a SystemError when delete the characters_written attribute of an OSError. (GH-11172)
Serhiy Storchaka committed
November 27, 2018
S
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka committed
November 21, 2018
V
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed
October 31, 2018
V
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner committed
October 12, 2018
Z
bpo-34940: Fix the error handling in _check_for_legacy_statements(). (GH-9764)
Zackery Spytz committed
June 15, 2018
S
bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581)
Serhiy Storchaka committed
June 11, 2018
S
Clean up after bpo-33738. (GH-7627)
Serhiy Storchaka committed
June 10, 2018
C
bpo-33738: Address review comments in GH #7477 (GH-7585)
Christian Tismer committed
June 9, 2018
C
bpo-33738: Fix macros which contradict PEP 384 (GH-7477)
Christian Tismer committed
April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
January 28, 2018
N
bpo-32685: Improve suggestion for print statement (GH-5375)
Nitish Chandra committed
January 20, 2018
S
bpo-32028: Fix suggestions for indented print statements (GH-4688)
Sanyam Khurana committed
November 15, 2017
S
bpo-30399: Get rid of trailing comma in the repr of BaseException. (#1650)
Serhiy Storchaka committed
October 26, 2017
X
bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327)
xdegaye committed
September 17, 2017
S
bpo-31497: Add private helper _PyType_Name(). (#3630)
Serhiy Storchaka committed
September 8, 2017
E
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow committed
August 22, 2017
M
bpo-31161: only check for parens error for SyntaxError (#3082)
Martijn Pieters committed
June 20, 2017
S
bpo-30597: Show expected input in custom 'print' error message. (#2009)
Sanyam Khurana committed