aboutsummaryrefslogtreecommitdiff
path: root/Objects/exceptions.c
AgeCommit message (Expand)Author
2021-10-23bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...Irit Katriel
2021-10-06Fix typos in the Objects directory (GH-28766)Christian Clauss
2021-09-07bpo-44348: BaseException deallocator uses trashcan (GH-28190)Victor Stinner
2021-08-09bpo-44854: Remove trailing whitespaces (GH-27689)Serhiy Storchaka
2021-07-27bpo-34013: Move the Python 2 hints from the exception constructor to the pars...Pablo Galindo Salgado
2021-05-07bpo-44029: Remove Py_UNICODE APIs (GH-25881)Inada Naoki
2021-04-23bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo
2021-04-16bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444)Pablo Galindo
2021-04-14bpo-38530: Offer suggestions on NameError (GH-25397)Pablo Galindo
2021-04-14bpo-38530: Offer suggestions on AttributeError (#16856)Pablo Galindo
2021-03-29bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)Inada Naoki
2021-02-19bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner
2021-02-17bpo-40170: Always define PyExceptionClass_Name() as a function (GH-24553)Erlend Egeberg Aasland
2020-11-21bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446)Serhiy Storchaka
2020-09-23bpo-41654: Fix compiler warning in MemoryError_dealloc() (GH-22387)Victor Stinner
2020-09-01bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH-22020)Pablo Galindo
2020-06-23bpo-40521: Make MemoryError free list per interpreter (GH-21086)Victor Stinner
2020-05-05bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)Victor Stinner
2020-04-15bpo-40268: Remove unused osdefs.h includes (GH-19532)Victor Stinner
2020-04-15bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)Victor Stinner
2020-04-15bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner
2020-04-14bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner
2020-04-11bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka
2020-03-04bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)Andy Lester
2019-08-25bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15131)Nick Coghlan
2019-07-30Fix typos in comments, docs and test names (#15018)Min ho Kim
2019-05-30bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer
2019-05-27bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner
2019-05-17bpo-36763: Add _PyInitError functions (GH-13395)Victor Stinner
2019-04-02fix confusing argument name in unicodeobject.c (GH-12653)Max Bernstein
2019-02-25bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka
2019-01-24bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse
2019-01-22bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)Victor Stinner
2019-01-22bpo-35713: Rework Python initialization (GH-11647)Victor Stinner
2018-12-17bpo-35504: Fix a SystemError when delete the characters_written attribute of ...Serhiy Storchaka
2018-11-27bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka
2018-11-21bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner
2018-11-12bpo-35081: Rename internal headers (GH-10275)Victor Stinner
2018-11-01bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner
2018-10-12bpo-34940: Fix the error handling in _check_for_legacy_statements(). (GH-9764)Zackery Spytz
2018-06-15bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581)Serhiy Storchaka
2018-06-11Clean up after bpo-33738. (GH-7627)Serhiy Storchaka
2018-06-10bpo-33738: Address review comments in GH #7477 (GH-7585)Christian Tismer
2018-06-09bpo-33738: Fix macros which contradict PEP 384 (GH-7477)Christian Tismer
2018-04-29bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...Siddhesh Poyarekar
2018-01-28bpo-32685: Improve suggestion for print statement (GH-5375)Nitish Chandra
2018-01-20bpo-32028: Fix suggestions for indented print statements (GH-4688)Sanyam Khurana
2017-11-15bpo-30399: Get rid of trailing comma in the repr of BaseException. (#1650)Serhiy Storchaka
2017-10-26bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327)xdegaye
2017-09-17bpo-31497: Add private helper _PyType_Name(). (#3630)Serhiy Storchaka