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.
........
This commit is contained in:
Alexander Belopolsky 2010-12-28 15:47:56 +00:00
parent 5360d003b6
commit dce6cf353c
3 changed files with 23 additions and 8 deletions

View file

@ -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: