summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_normalization.py
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-12-28 15:47:56 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-12-28 15:47:56 (GMT)
commitdce6cf353cd631629fd204f0eb75c3cec8e8d367 (patch)
tree47bf24751143c2247ed5c4658e573f6a59906746 /Lib/test/test_normalization.py
parent5360d003b666f874a05dd532ecf511cd459117f8 (diff)
downloadcpython-dce6cf353cd631629fd204f0eb75c3cec8e8d367.zip
cpython-dce6cf353cd631629fd204f0eb75c3cec8e8d367.tar.gz
cpython-dce6cf353cd631629fd204f0eb75c3cec8e8d367.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.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_normalization.py b/Lib/test/test_normalization.py
index 2c49720..3040a08 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: