Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
ed5e8e06cbf766e89d6c58a882ee024abb5b2ed7
/
Python
/
_warnings.c
59ad110
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
by Jeroen Demeyer
· 6 years ago
196a530
bpo-37483: add _PyObject_CallOneArg() function (#14558)
by Jeroen Demeyer
· 6 years ago
86ea581
bpo-36737: Use the module state C-API for warnings. (gh-13159)
by Eric Snow
· 6 years ago
87d23a0
bpo-36724: Add _PyWarnings_Fini() (#12963)
by Victor Stinner
· 6 years ago
a24107b
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
by Serhiy Storchaka
· 6 years ago
8905fcc
bpo-35454: Fix miscellaneous minor issues in error handling. (#11077)
by Serhiy Storchaka
· 7 years ago
62be742
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
by Serhiy Storchaka
· 7 years ago
621cebe
bpo-35081: Rename internal headers (GH-10275)
by Victor Stinner
· 7 years ago
50b4857
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
by Victor Stinner
· 7 years ago
27e2d1f
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
by Victor Stinner
· 7 years ago
e502451
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
by Benjamin Peterson
· 7 years ago
caba55b
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
by Victor Stinner
· 7 years ago
3f45f5d
bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556)
by Zackery Spytz
· 7 years ago
11a8966
bpo-33375: Get filename for warnings from frame.f_code.co_filename (GH-6622)
by Thomas Kluyver
· 7 years ago
b056562
bpo-33509: Fix _warnings for module_globals=None (#6833)
by Victor Stinner
· 7 years ago
dba976b
bpo-32591: fix abort in _PyErr_WarnUnawaitedCoroutine during shutdown (#5337)
by Nathaniel J. Smith
· 8 years ago
f320be7
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
by Serhiy Storchaka
· 8 years ago
3510334
bpo-32591: Fix PyExc_WarnFormat call (follow-up commit) (#5263)
by Yury Selivanov
· 8 years ago
fc2f407
bpo-32591: Add native coroutine origin tracking (#5250)
by Nathaniel J. Smith
· 8 years ago
9b99747
bpo-31975 (PEP 565): Show DeprecationWarning in __main__ (GH-4458)
by Nick Coghlan
· 8 years ago
5d86246
bpo-32030: Fix compiler warnings (#4921)
by Victor Stinner
· 8 years ago
747f48e
bpo-32230: Set sys.warnoptions with -X dev (#4820)
by Victor Stinner
· 8 years ago
c975878
bpo-27535: Fix memory leak with warnings ignore (#4489)
by Victor Stinner
· 8 years ago
21c7730
bpo-32089: Use default action for ResourceWarning (#4584)
by Victor Stinner
· 8 years ago
b98f171
bpo-27535: Cleanup create_filter() (#4516)
by Victor Stinner
· 8 years ago
1f15111
bpo-32030: Add _PyMainInterpreterConfig.pythonhome (#4513)
by Victor Stinner
· 8 years ago
8265627
bpo-27535: Optimize warnings.warn() (#4508)
by Victor Stinner
· 8 years ago
09f3a8a
bpo-32089: Fix warnings filters in dev mode (#4482)
by Victor Stinner
· 8 years ago
895862a
bpo-32088: Display Deprecation in debug mode (#4474)
by Victor Stinner
· 8 years ago
d4f8480
bpo-31572: Don't silence unexpected errors in the _warnings module. (#3731)
by Serhiy Storchaka
· 8 years ago
a5293b4
Fix miscellaneous typos (#4275)
by luzpaz
· 8 years ago
8b4ff53
bpo-31285: Remove splitlines identifier from Python/_warnings.c (#3803)
by Oren Milman
· 8 years ago
5d3e800
bpo-31566: Fix an assertion failure in _warnings.warn() in case of a bad __name__ global. (#3717)
by Oren Milman
· 8 years ago
91fb0af
bpo-31285: Fix an assertion failure and a SystemError in warnings.warn_explicit. (#3219)
by Oren Milman
· 8 years ago
3f9eee6
bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593)
by Eric Snow
· 8 years ago
93c92f7
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
by Eric Snow
· 8 years ago
9d984fd
bpo-31416: Fix assertion failures in case of a bad warnings.filters or warnings.defaultaction. (#3496)
by Oren Milman
· 8 years ago
252033d
bpo-31411: Prevent raising a SystemError in case warnings.onceregistry is not a dictionary. (#3485)
by Oren Milman
· 8 years ago
2ebc5ce
bpo-30860: Consolidate stateful runtime globals. (#3397)
by Eric Snow
· 8 years ago
05351c1
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
by Eric Snow
· 8 years ago
76d5abc
bpo-30860: Consolidate stateful runtime globals. (#2594)
by Eric Snow
· 8 years ago
86b7afd
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
by Eric Snow
· 8 years ago
ba85d69
bpo-29878: Add global instances of int for 0 and 1. (#852)
by Serhiy Storchaka
· 8 years ago
22f1875
Issue #20185: Convert _warnings.warn() to Argument Clinic
by Victor Stinner
· 9 years ago
55ba38a
Use _PyObject_CallMethodIdObjArgs()
by Victor Stinner
· 9 years ago
7bfb42d
Issue #28858: Remove _PyObject_CallArg1() macro
by Victor Stinner
· 9 years ago
de4ae3d
Backed out changeset b9c9691c72c5
by Victor Stinner
· 9 years ago
4778eab
Replace PyObject_CallFunction() with fastcall
by Victor Stinner
· 9 years ago
27580c1
Replace PyObject_CallFunctionObjArgs() with fastcall
by Victor Stinner
· 9 years ago
3b73ea1
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
by Serhiy Storchaka
· 9 years ago
f4934ea
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
by Serhiy Storchaka
· 9 years ago
f01e408
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
by Serhiy Storchaka
· 9 years ago
57a01d3
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
by Serhiy Storchaka
· 9 years ago
ec39756
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
by Serhiy Storchaka
· 9 years ago
4884271
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
by Serhiy Storchaka
· 9 years ago
023654f
get_warnings_attr(): Fix coverity warning
by Victor Stinner
· 9 years ago
e98445a
_warnings.warn_explicit(): try to import warnings
by Victor Stinner
· 9 years ago
e19558a
Add a source parameter to warnings.warn()
by Victor Stinner
· 9 years ago
914cde8
On ResourceWarning, log traceback where the object was allocated
by Victor Stinner
· 9 years ago
1231a46
Add _showwarnmsg() and _formatwarnmsg() to warnings
by Victor Stinner
· 9 years ago
ef1585e
Issue #25923: Added more const qualifiers to signatures of static and private functions.
by Serhiy Storchaka
· 10 years ago
5a57ade
Issue #20440: Massive replacing unsafe attribute setting code with special
by Serhiy Storchaka
· 10 years ago
714e493
Issue #24305: Prevent import subsystem stack frames from being counted
by Larry Hastings
· 10 years ago
63a6a6f
merge 3.4 (#24096)
by Benjamin Peterson
· 10 years ago
8c59816
merge 3.3 (#24096)
by Benjamin Peterson
· 10 years ago
deff2b7
be more robust against the filters list changing under us (closes #24096)
by Benjamin Peterson
· 10 years ago
f299abd
Issue #23731: Implement PEP 488.
by Brett Cannon
· 10 years ago
87538e7
Issue #4180: The warnings registries are now reset when the filters are modified.
by Antoine Pitrou
· 11 years ago
cb0a006
Issue #4180: The warnings registries are now reset when the filters are modified.
by Antoine Pitrou
· 11 years ago
d8089e0
Issue #16382: Improve exception message of warnings.warn() for bad category.
by Berker Peksag
· 11 years ago
bd303c1
Issue #19512, #19515: remove shared identifiers, move identifiers where they
by Victor Stinner
· 12 years ago
0905437
Issue #19512: add some common identifiers to only create common strings once,
by Victor Stinner
· 12 years ago
dcdd05b
Close #19442: warn_explicit() does nothing when called late during Python shutdown
by Victor Stinner
· 12 years ago
ae233ea
Issue #19437: Fix show_warning() of _warnings, stop at the first error to not
by Victor Stinner
· 12 years ago
3cd04aa
Issue #19437: Fix get_filter() from _warnings, don't call PyObject_IsSubclass()
by Victor Stinner
· 12 years ago
856f45f
Issue #19442: Fix warnings emitted during Python shutdown
by Victor Stinner
· 12 years ago
a4c704b
Issue #19424: Fix the warnings module to accept filename containing surrogate
by Victor Stinner
· 12 years ago
ce5f4fb
Issue #19421: fix a check in warnings.warn() to be able to use it during Python
by Victor Stinner
· 12 years ago
14e461d
Close #11619: The parser and the import machinery do not encode Unicode
by Victor Stinner
· 12 years ago
78e2c98
Issue #18408: Fix show_warning(), clear also the exception raised by
by Victor Stinner
· 12 years ago
070cb3c
Issue #1545463: At shutdown, defer finalization of codec modules so that stderr remains usable.
by Antoine Pitrou
· 12 years ago
aa5c5c6
Finally fix all test_capi refleaks
by Antoine Pitrou
· 14 years ago
21e0da2
remove some usage of Py_UNICODE_TOUPPER/LOWER
by Benjamin Peterson
· 14 years ago
720682e
Merge 3.2
by Florent Xicluna
· 14 years ago
5126df6
Remove obsolete py3k comment.
by Florent Xicluna
· 14 years ago
9e30aa5
Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()
by Victor Stinner
· 14 years ago
d10759f
Make _PyUnicode_FromId return borrowed references.
by Martin v. Löwis
· 14 years ago
1c67dd9
Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.
by Martin v. Löwis
· 14 years ago
bd928fe
Rename _Py_identifier to _Py_IDENTIFIER.
by Martin v. Löwis
· 14 years ago
1ee1b6f
Use identifier API for PyObject_GetAttrString.
by Martin v. Löwis
· 14 years ago
afe55bb
Add API for static strings, primarily good for identifiers.
by Martin v. Löwis
· 14 years ago
b62a7b2
Fix _warnings.c: make the filename string ready
by Victor Stinner
· 14 years ago
d63a3b8
Implement PEP 393.
by Martin v. Löwis
· 14 years ago
52a7d98
Make warnings accept a callable for showwarnings instead of
by Brett Cannon
· 14 years ago
bb4a747
start out this branch always with filename NULL
by Benjamin Peterson
· 14 years ago
a55007a
plug refleak
by Benjamin Peterson
· 14 years ago
8b0508e
Issue #12467: warnings: fix a race condition if a warning is emitted at
by Victor Stinner
· 14 years ago
4969f70
#11515: Merge with 3.1.
by Ezio Melotti
· 14 years ago
42da663
#11515: fix several typos. Patch by Piotr Kasprzyk.
by Ezio Melotti
· 14 years ago
cb428f0
Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem
by Victor Stinner
· 15 years ago
Next »