summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_exceptions.py
Commit message (Expand)AuthorAgeFilesLines
* Remove test.test_support.guard_warnings_filter.Brett Cannon2007-08-141-2/+2
* Deprecate BaseException.message as per PEP 352.Brett Cannon2007-05-051-27/+31
* Add a test for instantiating SyntaxError with no arguments.Brett Cannon2007-02-281-0/+3
* Add a test for slicing an exception.Brett Cannon2007-01-291-0/+7
* Remove unneeded imports of 'warnings'.Brett Cannon2006-12-131-1/+0
* WindowsError.str should display the windows error code,Thomas Heller2006-10-271-0/+13
* Bug #1566800: make sure that EnvironmentError can be called with anyGeorg Brandl2006-09-301-3/+8
* Remove the __unicode__ method from exceptions. Allows unicode() to be calledBrett Cannon2006-09-091-0/+9
* Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack.Georg Brandl2006-09-061-26/+13
* Fix for an obscure bug introduced by revs 46806 and 46808, with a test.Armin Rigo2006-06-211-0/+12
* SF patch 1501987: Remove randomness from test_exceptions,Tim Peters2006-06-071-19/+30
* Fix memory leak found by valgrind.Neal Norwitz2006-06-021-2/+4
* Convert docstrings to comments so regrtest -v prints method namesNeal Norwitz2006-06-021-7/+7
* Some code style tweaks, and remove apply.Georg Brandl2006-06-011-63/+67
* Whitespace normalization.Tim Peters2006-05-301-4/+4
* Convert test_exceptions to unittest.Georg Brandl2006-05-301-297/+287
* Do the check for no keyword arguments in __init__ so thatGeorg Brandl2006-05-301-1/+1
* Disallow keyword args for exceptions.Georg Brandl2006-05-301-0/+7
* Add a test case for exception pickling. args is never NULL.Georg Brandl2006-05-301-0/+13
* Conversion of exceptions over from faked-up classes to new-style C types.Richard Jones2006-05-271-8/+85
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-4/+1
* Stop producing or using OverflowWarning. PEP 237 thought this wouldTim Peters2004-08-251-7/+8
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-101-3/+3
* Complete the absolute import patch for the test suite. All relativeBarry Warsaw2002-07-301-1/+1
* Tighten up some warning filters, and break some dependencies on theTim Peters2002-04-161-2/+6
* Enable support for jython:Finn Bock2001-12-081-4/+11
* Add tests for new PyErr_NormalizeException() behaviorJeremy Hylton2001-09-261-0/+35
* Turn OverflowWarning into an error locally, in order to make theGuido van Rossum2001-08-231-0/+3
* reload(exceptions) should not raise an ImportError, but should actBarry Warsaw2001-08-131-0/+8
* Allow 'continue' inside 'try' clauseJeremy Hylton2001-02-011-19/+2
* Use 4-space indents.Fred Drake2000-10-231-8/+8
* Add test cases to make sure we get the right SyntaxError message forFred Drake2000-09-081-0/+49
* Applying patch #100994 to allow JPython to use more of the standardBarry Warsaw2000-09-011-1/+1
* Create two new exceptions: IndentationError and TabError. These areFred Drake2000-07-111-0/+8
* add minimal test of exception use. verify that each exception can beJeremy Hylton2000-06-201-0/+12
* Added a test to catch the base class.Barry Warsaw2000-05-251-0/+4
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-10/+10
* Expanded r() function to handle class exceptions.Barry Warsaw1997-08-291-1/+6
* exec() -> execGuido van Rossum1995-08-111-1/+1
* Unmerged except and finally clausesGuido van Rossum1992-05-061-4/+5
* Initial revisionGuido van Rossum1992-01-271-0/+91