summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_normalization.py
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-12-23 02:27:37 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-12-23 02:27:37 (GMT)
commit86f65d5dbb2543d5b30b6f9450994bebcbc5d53e (patch)
tree56fc8827c2ec064a341d757f7cf510ebed93d26a /Lib/test/test_normalization.py
parent70df8f8c6779d0ecfd364b895ee6a422bc7699c5 (diff)
downloadcpython-86f65d5dbb2543d5b30b6f9450994bebcbc5d53e.zip
cpython-86f65d5dbb2543d5b30b6f9450994bebcbc5d53e.tar.gz
cpython-86f65d5dbb2543d5b30b6f9450994bebcbc5d53e.tar.bz2
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 fa9611e..e3e2560 100644
--- a/Lib/test/test_normalization.py
+++ b/Lib/test/test_normalization.py
@@ -55,9 +55,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: