Exceptions should inherit from Exception now.

This commit is contained in:
Neal Norwitz 2006-03-24 08:02:51 +00:00
parent de868c9a1b
commit 846d72a7d7
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ from unicodedata import normalize
TESTDATAFILE = "NormalizationTest" + os.extsep + "txt" TESTDATAFILE = "NormalizationTest" + os.extsep + "txt"
TESTDATAURL = "http://www.unicode.org/Public/4.1.0/ucd/" + TESTDATAFILE TESTDATAURL = "http://www.unicode.org/Public/4.1.0/ucd/" + TESTDATAFILE
class RangeError: class RangeError(Exception):
pass pass
def NFC(str): def NFC(str):