summaryrefslogtreecommitdiff
path: root/Lib/test/test_exceptions.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #22836: Keep exception reports sensible despite errorsMartin Panter2016-02-281-4/+65
* Avoid deprecation warnings.Serhiy Storchaka2015-01-311-1/+1
* make sure to test UnicodeEncodeError, tooBenjamin Peterson2014-04-021-1/+1
* bail in unicode error's __str__ methods if the objects are not properly initi...Benjamin Peterson2014-04-021-0/+6
* Issue #16445: Fix potential segmentation fault when deleting an exception mes...Mark Dickinson2013-03-031-0/+12
* add a test for an assertion with tuple msgBenjamin Peterson2011-10-271-0/+6
* port 8d05f697acd4 (#11627)Benjamin Peterson2011-07-151-0/+8
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-14/+14
* testcapi tests are definitely cpython onlyBenjamin Peterson2010-06-281-1/+3
* Replace catch_warnings with check_warnings when it makes sense. Use assertRa...Florent Xicluna2010-03-311-14/+9
* Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, Uni...Eric Smith2010-02-241-0/+37
* #7092: Silence py3k warnings in test_exceptions and test_pep352. Patch by Flo...Ezio Melotti2010-02-021-34/+35
* use assert[Not]In where appropriateEzio Melotti2010-01-231-1/+1
* DeprecationWarning is now silent by default.Brett Cannon2010-01-101-0/+1
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-39/+35
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-35/+39
* #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new ...Georg Brandl2009-12-281-0/+39
* #6108: unicode(exception) and str(exception) should return the same messageEzio Melotti2009-12-241-1/+109
* #6844: do not emit DeprecationWarnings on access if Exception.message has bee...Georg Brandl2009-09-161-0/+40
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-14/+14
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-091-3/+3
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-261-6/+26
* Remove a dummy test that was checked in by mistakeAmaury Forgeot d'Arc2008-07-311-8/+0
* #2542: now that issubclass() may call arbitrary code,Amaury Forgeot d'Arc2008-07-311-1/+34
* Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing...Nick Coghlan2008-07-081-0/+1
* Add a missing quotation mark.Brett Cannon2007-11-031-1/+1
* Revert accidental checkins from last commit.Georg Brandl2007-08-211-16/+1
* Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.Georg Brandl2007-08-211-1/+16
* 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