summaryrefslogtreecommitdiffstats
path: root/Python/_warnings.c
Commit message (Expand)AuthorAgeFilesLines
* gh-135801: Improve filtering by module in warn_explicit() without module argu...Serhiy Storchaka2025-10-301-53/+22
* gh-139640: Fix swallowing syntax warnings in different modules (GH-139755)Serhiy Storchaka2025-10-141-22/+0
* gh-125854: Improve error messages for invalid category in the warnings module...Serhiy Storchaka2025-08-141-22/+17
* gh-108512: Add and use new replacements for PySys_GetObject() (GH-111035)Serhiy Storchaka2025-05-281-2/+1
* gh-131927: Prevent emitting optimizer warnings twice in the REPL (#131993)Tomas R.2025-04-121-0/+22
* gh-128384: Use a context variable for warnings.catch_warnings (gh-130010)Neil Schemenauer2025-04-091-38/+154
* gh-131238: Move _Py_VISIT_STACKREF() to pycore_stackref.h (#131560)Victor Stinner2025-03-211-2/+2
* gh-131238: Remove includes from pycore_interp.h (#131495)Victor Stinner2025-03-201-2/+1
* gh-131238: Remove more includes from pycore_interp.h (#131480)Victor Stinner2025-03-191-1/+3
* gh-130931: Add pycore_interpframe.h internal header (#131249)Victor Stinner2025-03-191-0/+1
* gh-130163: Fix crashes related to PySys_GetObject() (GH-130503)Serhiy Storchaka2025-02-251-4/+4
* gh-129766: Fix crash on calling `warnings._release_lock` with no lock (#129771)sobolevn2025-02-071-3/+6
* gh-129354: Use PyErr_FormatUnraisable() function (#129523)Victor Stinner2025-02-051-3/+7
* gh-128384: Add locking to warnings.py. (gh-128386)Neil Schemenauer2025-01-141-39/+79
* gh-126209: Fix inconsistency of `skip_file_prefixes` in `warnings.warn`'s C ...Daehee Kim2024-11-121-1/+2
* gh-121163: Add "all" as an valid alias for "always" in warnings.simplefilter(...Kirill Podoprigora2024-06-301-2/+2
* gh-119049: Fix incorrect display of warning which is constructed by C API (GH...Kirill Podoprigora2024-05-161-3/+2
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-117535: Change unknown filename of warnings from `sys` to `<sys>` (#118018)Tian Gao2024-04-191-2/+2
* gh-116664: In _warnings.c, make filters_version access thread-safe (#117374)Erlend E. Aasland2024-03-291-6/+9
* gh-116664: Fix unused var warnings in _warnings.c in non-free-threaded builds...Erlend E. Aasland2024-03-291-0/+8
* gh-116664: Make module state Py_SETREF's in _warnings thread-safe (#116959)Erlend E. Aasland2024-03-281-21/+37
* gh-116664: Ensure thread-safe dict access in _warnings (#116768)Erlend E. Aasland2024-03-181-29/+32
* gh-111789: Use PyDict_GetItemRef() in Python/_warnings.c (gh-112080)Serhiy Storchaka2023-11-271-4/+4
* gh-106320: Remove private _PyTraceback functions (#108453)Victor Stinner2023-08-241-3/+2
* gh-106320: Remove private _PySys functions (#108452)Victor Stinner2023-08-241-0/+2
* gh-106320: Remove private _PyDict C API (#107145)Victor Stinner2023-07-241-0/+1
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-121-2/+2
* gh-106320: Remove private pylifecycle.h functions (#106400)Victor Stinner2023-07-041-1/+2
* GH-100987: Allow objects other than code objects as the "executable" of an in...Mark Shannon2023-06-141-1/+1
* gh-105375: Improve PyErr_WarnExplicit() error handling (#105610)Erlend E. Aasland2023-06-111-12/+16
* gh-92536: Remove PyUnicode_READY() calls (#105210)Victor Stinner2023-06-011-3/+0
* GH-89091: raise `RuntimeWarning` for unawaited async generator methods (#104611)Kumar Aditya2023-05-261-0/+14
* gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...Eric Snow2023-05-151-1/+1
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-101758: Clean Up Uses of Import State (gh-101919)Eric Snow2023-02-151-9/+2
* gh-39615: fix warning on return type mismatch (#101407)Irit Katriel2023-01-301-1/+1
* gh-39615: Add warnings.warn() skip_file_prefixes support (#100840)Gregory P. Smith2023-01-281-24/+103
* gh-99537: Use Py_SETREF() function in C code (#99657)Victor Stinner2022-11-221-4/+2
* gh-99300: Use Py_NewRef() in Python/ directory (#99302)Victor Stinner2022-11-101-8/+4
* gh-97841: Add methoddef for _filters_mutated (gh-98115)Dong-hee Na2022-10-091-3/+8
* gh-86298: Ensure that __loader__ and __spec__.loader agree in warnings.warn_e...Barry Warsaw2022-10-071-3/+10
* gh-91102: Port 8-argument _warnings.warn_explicit to Argument Clinic (#92891)Oleg Iarygin2022-07-201-24/+23
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-191-1/+0
* GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)Kumar Aditya2022-05-271-16/+0
* bpo-47164: Add _PyCFunction_CAST() macro (GH-32192)Victor Stinner2022-03-311-3/+3
* bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...Eric Snow2022-02-231-21/+2
* bpo-46541: Discover the global strings. (gh-31346)Eric Snow2022-02-151-2/+2
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-113/+150
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-261-4/+2