From: Neal Norwitz Date: Fri, 24 Mar 2006 08:02:51 +0000 (+0000) Subject: Exceptions should inherit from Exception now. X-Git-Tag: v2.5a0~116 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=846d72a7d7536ea6ad9b530b1a96c354fb623115;p=python Exceptions should inherit from Exception now. --- diff --git a/Lib/test/test_normalization.py b/Lib/test/test_normalization.py index 8a361fd43e..81bdfbd96c 100644 --- a/Lib/test/test_normalization.py +++ b/Lib/test/test_normalization.py @@ -7,7 +7,7 @@ from unicodedata import normalize TESTDATAFILE = "NormalizationTest" + os.extsep + "txt" TESTDATAURL = "http://www.unicode.org/Public/4.1.0/ucd/" + TESTDATAFILE -class RangeError: +class RangeError(Exception): pass def NFC(str):