mirror of
https://github.com/python/cpython.git
synced 2025-08-28 12:45:07 +00:00
Must inherit from Exception now.
This commit is contained in:
parent
2def11a90d
commit
1e32b6927f
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue