summaryrefslogtreecommitdiff
path: root/Lib/warnings.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-3/+3
* Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-3/+3
* Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
* Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-1/+1
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...Georg Brandl2010-10-241-0/+7
* _warnings exposed two variables with the name 'default_action' andBrett Cannon2010-09-041-3/+3
* Merged revisions 77402,77505,77510 via svnmerge fromBenjamin Peterson2010-06-281-2/+4
* Merged revisions 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,...Georg Brandl2009-10-271-1/+13
* Use true booleans and PEP8 for argdefaults.Georg Brandl2009-09-161-2/+2
* forward port r66386Benjamin Peterson2008-10-161-0/+15
* Merged revisions 66321 via svnmerge fromBrett Cannon2008-09-091-25/+21
* Merge in r66135. Doing also required removing a stale DeprecationWarning alongBrett Cannon2008-09-021-0/+70
* Removed some unused imports to decrease the amount of loaded modules during s...Christian Heimes2008-08-151-1/+0
* Merged revisions 64549 via svnmerge fromBrett Cannon2008-06-271-0/+1
* Merged revisions 62774-62775,62785,62787-62788 via svnmerge fromChristian Heimes2008-05-061-0/+3
* Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,...Christian Heimes2008-04-131-123/+148
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-2/+2
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-071-3/+2
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-3/+3
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+0
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-2/+8
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-1/+2
* Bug #1403410: The warnings module now doesn't get confusedGeorg Brandl2006-01-131-1/+1
* bug [ 839151 ] attempt to access sys.argv when it doesn't existGeorg Brandl2005-06-261-1/+5
* Replace list of constants with tuples of constants.Raymond Hettinger2005-02-061-1/+1
* Fix wrong variable name.Walter Dörwald2004-12-291-1/+1
* Stop producing or using OverflowWarning. PEP 237 thought this wouldTim Peters2004-08-251-0/+1
* SF bug 917108: warnings.py does not define _test().Tim Peters2004-03-211-8/+3
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-11/+11
* Change warnings to avoid importing re module during startup.Jeremy Hylton2003-07-111-43/+28
* defer re module imports to help improve interpreter startupSkip Montanaro2003-05-141-1/+4
* Fix bug 683658 - PyErr_Warn may cause import deadlock.Mark Hammond2003-02-191-1/+4
* Allow Unicode strings as message and module name.Martin v. Löwis2002-10-141-2/+2
* Ignore IOError exceptions when writing the message.Mark Hammond2002-09-111-1/+4
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-3/+3
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* As discussed on python-dev, add a mechanism to indicate featuresNeal Norwitz2002-05-291-0/+1
* resetwarnings(): Remove extra space from docstring guts.Tim Peters2002-04-161-1/+1
* Whitespace normalization.Tim Peters2002-04-161-5/+5
* resetwarnings(): change the docstring to reflect what the codeTim Peters2002-04-161-1/+1
* [Apply SF patch #504943]Walter Dörwald2002-03-211-5/+14
* Allow for the possibility that globals['__name__'] does not exist;Guido van Rossum2001-08-311-1/+4
* Ignore OverflowWarning by default. To enable the warning, useGuido van Rossum2001-08-231-0/+1
* final round of __all__ lists (I hope) - skipped urllib2 because Moshe may beSkip Montanaro2001-03-011-0/+3
* Move a comment around to where it belongs (the code had alrady beenGuido van Rossum2001-02-281-1/+1
* Add a new API:Guido van Rossum2001-02-281-0/+10
* Whitespace normalization. Top level of Lib now fixed-point for reindent.py!Tim Peters2001-01-151-23/+23
* - Added keyword argument 'append' to filterwarnings(); if true, thisGuido van Rossum2001-01-141-5/+10