summaryrefslogtreecommitdiffstats
path: root/Python/_warnings.c
Commit message (Expand)AuthorAgeFilesLines
* 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