summaryrefslogtreecommitdiff
path: root/Lib/test/test_normalization.py
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-12-28 15:47:56 +0000
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-12-28 15:47:56 +0000
commitcdb6c676c6db407af23556d56d226f9fecae4cf5 (patch)
treed8e53fcf15fe5d0fe5826be2e5343155c976e105 /Lib/test/test_normalization.py
parent3798ae0f95a1997700dcd9f4c738797cb3f6fd25 (diff)
downloadcpython-cdb6c676c6db407af23556d56d226f9fecae4cf5.tar.gz
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.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_normalization.py b/Lib/test/test_normalization.py
index 2c4972098a..3040a08618 100644
--- a/Lib/test/test_normalization.py
+++ b/Lib/test/test_normalization.py
@@ -53,9 +53,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: