index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
_warnings.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-135801: Improve filtering by module in warn_explicit() without module argu...
Serhiy Storchaka
2025-10-30
1
-53/+22
*
gh-139640: Fix swallowing syntax warnings in different modules (GH-139755)
Serhiy Storchaka
2025-10-14
1
-22/+0
*
gh-125854: Improve error messages for invalid category in the warnings module...
Serhiy Storchaka
2025-08-14
1
-22/+17
*
gh-108512: Add and use new replacements for PySys_GetObject() (GH-111035)
Serhiy Storchaka
2025-05-28
1
-2/+1
*
gh-131927: Prevent emitting optimizer warnings twice in the REPL (#131993)
Tomas R.
2025-04-12
1
-0/+22
*
gh-128384: Use a context variable for warnings.catch_warnings (gh-130010)
Neil Schemenauer
2025-04-09
1
-38/+154
*
gh-131238: Move _Py_VISIT_STACKREF() to pycore_stackref.h (#131560)
Victor Stinner
2025-03-21
1
-2/+2
*
gh-131238: Remove includes from pycore_interp.h (#131495)
Victor Stinner
2025-03-20
1
-2/+1
*
gh-131238: Remove more includes from pycore_interp.h (#131480)
Victor Stinner
2025-03-19
1
-1/+3
*
gh-130931: Add pycore_interpframe.h internal header (#131249)
Victor Stinner
2025-03-19
1
-0/+1
*
gh-130163: Fix crashes related to PySys_GetObject() (GH-130503)
Serhiy Storchaka
2025-02-25
1
-4/+4
*
gh-129766: Fix crash on calling `warnings._release_lock` with no lock (#129771)
sobolevn
2025-02-07
1
-3/+6
*
gh-129354: Use PyErr_FormatUnraisable() function (#129523)
Victor Stinner
2025-02-05
1
-3/+7
*
gh-128384: Add locking to warnings.py. (gh-128386)
Neil Schemenauer
2025-01-14
1
-39/+79
*
gh-126209: Fix inconsistency of `skip_file_prefixes` in `warnings.warn`'s C ...
Daehee Kim
2024-11-12
1
-1/+2
*
gh-121163: Add "all" as an valid alias for "always" in warnings.simplefilter(...
Kirill Podoprigora
2024-06-30
1
-2/+2
*
gh-119049: Fix incorrect display of warning which is constructed by C API (GH...
Kirill Podoprigora
2024-05-16
1
-3/+2
*
gh-116322: Add Py_mod_gil module slot (#116882)
Brett Simmers
2024-05-03
1
-0/+1
*
gh-117535: Change unknown filename of warnings from `sys` to `<sys>` (#118018)
Tian Gao
2024-04-19
1
-2/+2
*
gh-116664: In _warnings.c, make filters_version access thread-safe (#117374)
Erlend E. Aasland
2024-03-29
1
-6/+9
*
gh-116664: Fix unused var warnings in _warnings.c in non-free-threaded builds...
Erlend E. Aasland
2024-03-29
1
-0/+8
*
gh-116664: Make module state Py_SETREF's in _warnings thread-safe (#116959)
Erlend E. Aasland
2024-03-28
1
-21/+37
*
gh-116664: Ensure thread-safe dict access in _warnings (#116768)
Erlend E. Aasland
2024-03-18
1
-29/+32
*
gh-111789: Use PyDict_GetItemRef() in Python/_warnings.c (gh-112080)
Serhiy Storchaka
2023-11-27
1
-4/+4
*
gh-106320: Remove private _PyTraceback functions (#108453)
Victor Stinner
2023-08-24
1
-3/+2
*
gh-106320: Remove private _PySys functions (#108452)
Victor Stinner
2023-08-24
1
-0/+2
*
gh-106320: Remove private _PyDict C API (#107145)
Victor Stinner
2023-07-24
1
-0/+1
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-2/+2
*
gh-106320: Remove private pylifecycle.h functions (#106400)
Victor Stinner
2023-07-04
1
-1/+2
*
GH-100987: Allow objects other than code objects as the "executable" of an in...
Mark Shannon
2023-06-14
1
-1/+1
*
gh-105375: Improve PyErr_WarnExplicit() error handling (#105610)
Erlend E. Aasland
2023-06-11
1
-12/+16
*
gh-92536: Remove PyUnicode_READY() calls (#105210)
Victor Stinner
2023-06-01
1
-3/+0
*
GH-89091: raise `RuntimeWarning` for unawaited async generator methods (#104611)
Kumar Aditya
2023-05-26
1
-0/+14
*
gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...
Eric Snow
2023-05-15
1
-1/+1
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-101758: Clean Up Uses of Import State (gh-101919)
Eric Snow
2023-02-15
1
-9/+2
*
gh-39615: fix warning on return type mismatch (#101407)
Irit Katriel
2023-01-30
1
-1/+1
*
gh-39615: Add warnings.warn() skip_file_prefixes support (#100840)
Gregory P. Smith
2023-01-28
1
-24/+103
*
gh-99537: Use Py_SETREF() function in C code (#99657)
Victor Stinner
2022-11-22
1
-4/+2
*
gh-99300: Use Py_NewRef() in Python/ directory (#99302)
Victor Stinner
2022-11-10
1
-8/+4
*
gh-97841: Add methoddef for _filters_mutated (gh-98115)
Dong-hee Na
2022-10-09
1
-3/+8
*
gh-86298: Ensure that __loader__ and __spec__.loader agree in warnings.warn_e...
Barry Warsaw
2022-10-07
1
-3/+10
*
gh-91102: Port 8-argument _warnings.warn_explicit to Argument Clinic (#92891)
Oleg Iarygin
2022-07-20
1
-24/+23
*
gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)
Victor Stinner
2022-06-19
1
-1/+0
*
GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)
Kumar Aditya
2022-05-27
1
-16/+0
*
bpo-47164: Add _PyCFunction_CAST() macro (GH-32192)
Victor Stinner
2022-03-31
1
-3/+3
*
bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...
Eric Snow
2022-02-23
1
-21/+2
*
bpo-46541: Discover the global strings. (gh-31346)
Eric Snow
2022-02-15
1
-2/+2
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-113/+150
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
1
-4/+2
[next]