| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the te... | Nick Coghlan | 2008-09-11 | 1 | -0/+15 |
|
|
* | warnings.catch_warnings() now returns a list or None instead of the custom | Brett Cannon | 2008-09-09 | 1 | -34/+21 |
|
|
* | Deprecate bsddb for removal in Python 3.0. | Brett Cannon | 2008-09-05 | 1 | -1/+8 |
|
|
* | Move test.test_support.catch_warning() to the warnings module, rename it | Brett Cannon | 2008-09-02 | 1 | -1/+74 |
|
|
* | warnings.warn_explicit() did not have the proper TypeErrors in place to prevent | Brett Cannon | 2008-06-27 | 1 | -0/+1 |
|
|
* | Practice EAFP, and revert 62787 | Benjamin Peterson | 2008-05-07 | 1 | -3/+0 |
|
|
* | Make the Python implementation of warnings compatible with the C implementati... | Benjamin Peterson | 2008-05-06 | 1 | -0/+3 |
|
|
* | Remove the use of 'inspect' from 'warnings' for detected deprecated use of the | Brett Cannon | 2008-05-05 | 1 | -5/+12 |
|
|
* | Add a DeprecationWarning for when warnings.showwarning() is set to a function | Brett Cannon | 2008-05-05 | 1 | -1/+14 |
|
|
* | Re-implement the 'warnings' module in C. This allows for usage of the | Brett Cannon | 2008-04-12 | 1 | -123/+148 |
|
|
* | Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504 | Christian Heimes | 2007-11-27 | 1 | -0/+10 |
|
|
* | Ignore ImportWarning by default | Nick Coghlan | 2006-07-06 | 1 | -0/+1 |
|
|
* | 'warning's was improperly requiring that a command-line Warning category be | Brett Cannon | 2006-06-22 | 1 | -2/+1 |
|
|
* | Make use of new str.startswith/endswith semantics. | Georg Brandl | 2006-06-09 | 1 | -1/+1 |
|
|
* | Conversion of exceptions over from faked-up classes to new-style C types. | Richard Jones | 2006-05-27 | 1 | -2/+0 |
|
|
* | Updated the warnings, linecache, inspect, traceback, site, and doctest modules | Phillip J. Eby | 2006-04-11 | 1 | -2/+8 |
|
|
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -1/+2 |
|
|
* | Bug #1403410: The warnings module now doesn't get confused | Georg Brandl | 2006-01-13 | 1 | -1/+1 |
|
|
* | bug [ 839151 ] attempt to access sys.argv when it doesn't exist | Georg Brandl | 2005-06-26 | 1 | -1/+5 |
|
|
* | Replace list of constants with tuples of constants. | Raymond Hettinger | 2005-02-06 | 1 | -1/+1 |
|
|
* | Fix wrong variable name. | Walter Dörwald | 2004-12-29 | 1 | -1/+1 |
|
|
* | Stop producing or using OverflowWarning. PEP 237 thought this would | Tim Peters | 2004-08-25 | 1 | -0/+1 |
|
|
* | SF bug 917108: warnings.py does not define _test(). | Tim Peters | 2004-03-21 | 1 | -8/+3 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -11/+11 |
|
|
* | Change warnings to avoid importing re module during startup. | Jeremy Hylton | 2003-07-11 | 1 | -43/+28 |
|
|
* | defer re module imports to help improve interpreter startup | Skip Montanaro | 2003-05-14 | 1 | -1/+4 |
|
|
* | Fix bug 683658 - PyErr_Warn may cause import deadlock. | Mark Hammond | 2003-02-19 | 1 | -1/+4 |
|
|
* | Allow Unicode strings as message and module name. | Martin v. Löwis | 2002-10-14 | 1 | -2/+2 |
|
|
* | Ignore IOError exceptions when writing the message. | Mark Hammond | 2002-09-11 | 1 | -1/+4 |
|
|
* | Remove uses of the string and types modules: | Walter Dörwald | 2002-06-03 | 1 | -3/+3 |
|
|
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
|
|
* | As discussed on python-dev, add a mechanism to indicate features | Neal Norwitz | 2002-05-29 | 1 | -0/+1 |
|
|
* | resetwarnings(): Remove extra space from docstring guts. | Tim Peters | 2002-04-16 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2002-04-16 | 1 | -5/+5 |
|
|
* | resetwarnings(): change the docstring to reflect what the code | Tim Peters | 2002-04-16 | 1 | -1/+1 |
|
|
* | [Apply SF patch #504943] | Walter Dörwald | 2002-03-21 | 1 | -5/+14 |
|
|
* | Allow for the possibility that globals['__name__'] does not exist; | Guido van Rossum | 2001-08-31 | 1 | -1/+4 |
|
|
* | Ignore OverflowWarning by default. To enable the warning, use | Guido van Rossum | 2001-08-23 | 1 | -0/+1 |
|
|
* | final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be | Skip Montanaro | 2001-03-01 | 1 | -0/+3 |
|
|
* | Move a comment around to where it belongs (the code had alrady been | Guido van Rossum | 2001-02-28 | 1 | -1/+1 |
|
|
* | Add a new API: | Guido van Rossum | 2001-02-28 | 1 | -0/+10 |
|
|
* | Whitespace normalization. Top level of Lib now fixed-point for reindent.py! | Tim Peters | 2001-01-15 | 1 | -23/+23 |
|
|
* | - Added keyword argument 'append' to filterwarnings(); if true, this | Guido van Rossum | 2001-01-14 | 1 | -5/+10 |
|
|
* | Improve error messages for invalid warning arguments; don't raise | Guido van Rossum | 2000-12-19 | 1 | -4/+10 |
|
|
* | Python part of the warnings subsystem. | Guido van Rossum | 2000-12-15 | 1 | -0/+227 |
|
|