index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Python
/
errors.c
Commit message (
Expand
)
Author
Age
*
gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)
Victor Stinner
2022-11-23
*
gh-99537: Use Py_SETREF() function in C code (#99657)
Victor Stinner
2022-11-22
*
gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)
Victor Stinner
2022-11-16
*
gh-99300: Use Py_NewRef() in Python/ directory (#99302)
Victor Stinner
2022-11-10
*
gh-91058: Add error suggestions to 'import from' import errors (#98305)
Pablo Galindo Salgado
2022-10-25
*
gh-94673: Add _PyStaticType_InitBuiltin() (#95152)
Eric Snow
2022-07-25
*
GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)
Kumar Aditya
2022-05-27
*
Fix refleaks in PyErr_SetHandledException (GH-91627)
Dennis Sweeney
2022-04-17
*
gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531)
Irit Katriel
2022-04-15
*
bpo-46816: Remove declarations for non-__STDC__ compilers (GH-31466)
Oleg Iarygin
2022-02-26
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
*
bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)
Victor Stinner
2022-01-21
*
bpo-46417: Finalize structseq types at exit (GH-30645)
Victor Stinner
2022-01-21
*
bpo-45711: Remove type and traceback from exc_info (GH-30122)
Irit Katriel
2021-12-17
*
bpo-46008: Make runtime-global object/type lifecycle functions and state cons...
Eric Snow
2021-12-09
*
bpo-45711: Remove unnecessary normalization of exc_info (GH-29922)
Irit Katriel
2021-12-08
*
bpo-45711: Change exc_info related APIs to derive type and traceback from the...
Irit Katriel
2021-11-30
*
bpo-45711: use exc_value instead of exc_type to determine if exc_info is vali...
Irit Katriel
2021-11-25
*
bpo-45848: Allow the parser to get error lines from encoded files (GH-29646)
Pablo Galindo Salgado
2021-11-20
*
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Victor Stinner
2021-10-13
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-12
*
bpo-41031: Match C and Python code formatting of unprintable exceptions and e...
Irit Katriel
2021-09-05
*
bpo-45083: Include the exception class qualname when formatting an exception ...
Irit Katriel
2021-09-03
*
bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle i...
Irit Katriel
2021-08-10
*
closes bpo-39091: Fix segfault when Exception constructor returns non-excepti...
Noah
2021-08-02
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
*
bpo-44094: Remove deprecated PyErr_ APIs. (GH-26011)
Inada Naoki
2021-05-13
*
bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)
Pablo Galindo
2021-04-23
*
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Victor Stinner
2021-04-02
*
bpo-32381: Rewrite PyErr_ProgramText() (GH-23700)
Victor Stinner
2020-12-08
*
bpo-42599: Remove useless PyModule_GetWarningsModule() (GH-23691)
Hai Shi
2020-12-08
*
bpo-42500: Fix recursion in or after except (GH-23568)
Mark Shannon
2020-12-02
*
bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)
Serhiy Storchaka
2020-10-26
*
bpo-41991: Remove _PyObject_HasAttrId (GH-22629)
Serhiy Storchaka
2020-10-10
*
bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20...
Lysandros Nikolaou
2020-06-16
*
Remove redundant var in PyErr_NewException() (GH-20850)
Hai Shi
2020-06-13
*
bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)
Victor Stinner
2020-06-01
*
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Chris Jerdonek
2020-05-22
*
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek
2020-05-17
*
bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)
Victor Stinner
2020-05-05
*
bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)
Victor Stinner
2020-04-29
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
*
bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183)
Victor Stinner
2020-03-27
*
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Andy Lester
2020-03-06
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
*
closes bpo-39630: Update pointers to string literals to be const char *. (GH-...
Andy Lester
2020-02-13
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
*
bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)
Hai Shi
2020-01-30
*
bpo-39164: Fix compiler warning in PyErr_GetExcInfo() (GH-18010)
Victor Stinner
2020-01-15
[next]