- 5312a7f Avoid deprecation warnings. by Serhiy Storchaka · 10 years ago
- 0768100 make sure to test UnicodeEncodeError, too by Benjamin Peterson · 11 years ago
- c4e6e0a bail in unicode error's __str__ methods if the objects are not properly initialized (closes #21134) by Benjamin Peterson · 11 years ago
- 7cac1c2 Issue #16445: Fix potential segmentation fault when deleting an exception message. by Mark Dickinson · 12 years ago
- 78fc705 add a test for an assertion with tuple msg by Benjamin Peterson · 14 years ago
- c3349cd port 8d05f697acd4 (#11627) by Benjamin Peterson · 14 years ago
- 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
- 8eeb1dc testcapi tests are definitely cpython only by Benjamin Peterson · 15 years ago
- 6257a7b Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. by Florent Xicluna · 15 years ago
- 2d9856d Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to strings. by Eric Smith · 15 years ago
- 1f517e1 #7092: Silence py3k warnings in test_exceptions and test_pep352. Patch by Florent Xicluna. by Ezio Melotti · 15 years ago
- aa98058 use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
- 6fdd3dc DeprecationWarning is now silent by default. by Brett Cannon · 15 years ago
- ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 15 years ago
- 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 15 years ago
- 740cdc3 #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring. by Georg Brandl · 15 years ago
- f84caf4 #6108: unicode(exception) and str(exception) should return the same message by Ezio Melotti · 15 years ago
- 0674d3f #6844: do not emit DeprecationWarnings on access if Exception.message has been set by the user. by Georg Brandl · 16 years ago
- 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
- 672237d warnings.catch_warnings() now returns a list or None instead of the custom by Brett Cannon · 17 years ago
- 0668c62 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 17 years ago
- ad96040 Remove a dummy test that was checked in by mistake by Amaury Forgeot d'Arc · 17 years ago
- 246daed #2542: now that issubclass() may call arbitrary code, by Amaury Forgeot d'Arc · 17 years ago
- 524b777 Issue 2517: Allow unicode messages in Exceptions again by correctly bypassing the instance dictionary when looking up __unicode__ on new-style classes by Nick Coghlan · 17 years ago
- b13f70d Add a missing quotation mark. by Brett Cannon · 18 years ago
- d7e9f60 Revert accidental checkins from last commit. by Georg Brandl · 18 years ago
- fdca6d8 Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. by Georg Brandl · 18 years ago
- 2ee4128 Remove test.test_support.guard_warnings_filter. by Brett Cannon · 18 years ago
- 229cee2 Deprecate BaseException.message as per PEP 352. by Brett Cannon · 18 years ago
- f8267df Add a test for instantiating SyntaxError with no arguments. by Brett Cannon · 18 years ago
- e05e6b0 Add a test for slicing an exception. by Brett Cannon · 18 years ago
- c745df8 Remove unneeded imports of 'warnings'. by Brett Cannon · 18 years ago
- df08f0b WindowsError.str should display the windows error code, by Thomas Heller · 19 years ago
- 3267d28 Bug #1566800: make sure that EnvironmentError can be called with any by Georg Brandl · 19 years ago
- ca2ca79 Remove the __unicode__ method from exceptions. Allows unicode() to be called by Brett Cannon · 19 years ago
- 38f6237 Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. by Georg Brandl · 19 years ago
- 53c1692f Fix for an obscure bug introduced by revs 46806 and 46808, with a test. by Armin Rigo · 19 years ago
- 80dc76e SF patch 1501987: Remove randomness from test_exceptions, by Tim Peters · 19 years ago
- 38d4d4a Fix memory leak found by valgrind. by Neal Norwitz · 19 years ago
- e152aab Convert docstrings to comments so regrtest -v prints method names by Neal Norwitz · 19 years ago
- e08940e Some code style tweaks, and remove apply. by Georg Brandl · 19 years ago
- dd55b0a Whitespace normalization. by Tim Peters · 19 years ago
- cdcede6 Convert test_exceptions to unittest. by Georg Brandl · 19 years ago
- b0432bc Do the check for no keyword arguments in __init__ so that by Georg Brandl · 19 years ago
- 861089f Disallow keyword args for exceptions. by Georg Brandl · 19 years ago
- 05f97bf Add a test case for exception pickling. args is never NULL. by Georg Brandl · 19 years ago
- 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 19 years ago
- bf36409 PEP 352 implementation. Creates a new base class, BaseException, which has an by Brett Cannon · 19 years ago
- c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 21 years ago
- a94568a Patch #734231: Update RiscOS support. In particular, correct by Martin v. Löwis · 22 years ago
- 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 23 years ago
- d392506 Tighten up some warning filters, and break some dependencies on the by Tim Peters · 23 years ago
- aa3dc45 Enable support for jython: by Finn Bock · 23 years ago
- ede049b Add tests for new PyErr_NormalizeException() behavior by Jeremy Hylton · 24 years ago
- 83b120d Turn OverflowWarning into an error locally, in order to make the by Guido van Rossum · 24 years ago
- b9c1d3d reload(exceptions) should not raise an ImportError, but should act by Barry Warsaw · 24 years ago
- 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 24 years ago
- 2e6d25c Use 4-space indents. by Fred Drake · 25 years ago
- 72e48bd Add test cases to make sure we get the right SyntaxError message for by Fred Drake · 25 years ago
- 3a9d061 Applying patch #100994 to allow JPython to use more of the standard by Barry Warsaw · 25 years ago
- 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 25 years ago
- 56c807d add minimal test of exception use. verify that each exception can be by Jeremy Hylton · 25 years ago
- 992cb8a Added a test to catch the base class. by Barry Warsaw · 25 years ago
- 41360a4 Mass check-in after untabifying all files that need it. by Guido van Rossum · 27 years ago
- 6ed41a0 Expanded r() function to handle class exceptions. by Barry Warsaw · 28 years ago
- e2cb727 exec() -> exec by Guido van Rossum · 30 years ago
- 9ea0fbc Unmerged except and finally clauses by Guido van Rossum · 33 years ago
- 3bead09 Initial revision by Guido van Rossum · 33 years ago