diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-12-28 15:42:23 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-12-28 15:42:23 (GMT) |
commit | 18f6b1987f0d024445dadbebba9f4395cea622bf (patch) | |
tree | cf1cb4e356124bc5139221f8696400d84e28f353 /Lib/test/test_normalization.py | |
parent | 17638d94352848254727910c6dc55eedaacb996c (diff) | |
download | cpython-18f6b1987f0d024445dadbebba9f4395cea622bf.zip cpython-18f6b1987f0d024445dadbebba9f4395cea622bf.tar.gz cpython-18f6b1987f0d024445dadbebba9f4395cea622bf.tar.bz2 |
Merged revisions 87442 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87442 | alexander.belopolsky | 2010-12-22 21:27:37 -0500 (Wed, 22 Dec 2010) | 1 line
Issue #10254: Fixed a crash and a regression introduced by the implementation of PRI 29.
........
Diffstat (limited to 'Lib/test/test_normalization.py')
-rw-r--r-- | Lib/test/test_normalization.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_normalization.py b/Lib/test/test_normalization.py index dbe1a11..b674371 100644 --- a/Lib/test/test_normalization.py +++ b/Lib/test/test_normalization.py @@ -54,9 +54,6 @@ class NormalizationTest(unittest.TestCase): if line.startswith("@Part"): part = line.split()[0] continue - if part == "@Part3": - # XXX we don't support PRI #29 yet, so skip these tests for now - continue try: c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]] except RangeError: |