Must inherit from Exception now.

This commit is contained in:
Neal Norwitz 2006-03-24 08:02:35 +00:00
parent 2def11a90d
commit 1e32b6927f
1 changed files with 1 additions and 1 deletions

View File

@ -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):