~ubuntu-branches/ubuntu/quantal/python2.7/quantal

« back to all changes in this revision

Viewing changes to Lib/test/test_normalization.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2011-05-30 06:44:23 UTC
  • mto: (27.1.6 oneiric) (36.1.11 sid)
  • mto: This revision was merged to the branch mainline in revision 32.
  • Revision ID: james.westby@ubuntu.com-20110530064423-zj6auh76957umtm4
Tags: upstream-2.7.2~rc1
ImportĀ upstreamĀ versionĀ 2.7.2~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
            if line.startswith("@Part"):
54
54
                part = line.split()[0]
55
55
                continue
56
 
            if part == "@Part3":
57
 
                # XXX we don't support PRI #29 yet, so skip these tests for now
58
 
                continue
59
56
            try:
60
57
                c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1]]
61
58
            except RangeError: