summaryrefslogtreecommitdiff
path: root/Python/_warnings.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-31285: Don't raise a SystemError in warnings.warn_explicit() in cas...Oren Milman2017-09-301-2/+3
* [2.7] bpo-31411: Prevent raising a SystemError in case warnings.onceregistry ...Serhiy Storchaka2017-09-111-1/+7
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-1/+1
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
* correct ref counting of default_action (closes #22017)Benjamin Peterson2014-07-201-0/+1
* start out this branch always with filename NULLBenjamin Peterson2011-07-041-1/+1
* plug refleakBenjamin Peterson2011-07-031-0/+1
* Issue #12467: warnings: fix a race condition if a warning is emitted atVictor Stinner2011-07-041-1/+1
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* When DeprecationWarning was silenced by default, it also silenced any use of -QBrett Cannon2010-04-251-5/+7
* Remove C++/C99-style comments.Brett Cannon2010-01-151-2/+2
* The silencing of DeprecationWarning was not taking -3 into consideration. SinceBrett Cannon2010-01-141-12/+18
* DeprecationWarning is now silent by default.Brett Cannon2010-01-101-20/+23
* Issue #6415: Fixed warnings.warn sagfault on bad formatted string.Hirokazu Yamamoto2009-07-171-0/+2
* Issue 5954, PyFrame_GetLineNumber:Jeffrey Yasskin2009-05-081-1/+1
* _warnings was importing itself to get an attribute. That's bad if warnings getsBrett Cannon2009-04-011-16/+30
* Require implementations for warnings.showwarning() support the 'line' argument.Brett Cannon2009-03-111-49/+17
* Fixed a couple more C99 comments and one occurence of inline.Christian Heimes2008-10-021-3/+3
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-021-4/+10
* #3342: In tracebacks, printed source lines were not indented since r62555.Amaury Forgeot d'Arc2008-07-111-2/+2
* warnings.warn_explicit() did not have the proper TypeErrors in place to preventBrett Cannon2008-06-271-5/+13
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-28/+28
* turn PyErr_WarnPy3k into a macroBenjamin Peterson2008-05-261-9/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-28/+28
* Fix a refleak in the _warnings module.Georg Brandl2008-05-131-1/+3
* Fix logic error in Python/_warnings.c and add a test to verifyBenjamin Peterson2008-05-061-0/+2
* Fix a bug in the handling of the stacklevel argument in warnings.warn() whereBrett Cannon2008-05-061-3/+1
* Add a DeprecationWarning for when warnings.showwarning() is set to a functionBrett Cannon2008-05-051-13/+43
* Fix the C implementation of 'warnings' to infer the filename of the module thatBrett Cannon2008-05-031-0/+13
* Fix some indentation errors.Brett Cannon2008-05-031-9/+10
* Fix a backwards-compatibility mistake where a new optional argument forBrett Cannon2008-05-021-3/+0
* Added PyErr_WarnPy3k function. (issue 2671) I will be converting current Py3k...Benjamin Peterson2008-04-271-0/+9
* Correct a refleak found by "regrtest.py -R:: test_structmembers"Amaury Forgeot d'Arc2008-04-141-5/+6
* Use PyString_InternFromString instead of PyString_FromString for static varsChristian Heimes2008-04-131-3/+3
* Re-implement the 'warnings' module in C. This allows for usage of theBrett Cannon2008-04-121-0/+856