diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-09-09 19:55:37 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-09-09 19:55:37 (GMT) |
commit | 724f6a67f241f39394b15c419570920ebdfefacb (patch) | |
tree | dc795f9edbd8de67b4ad14fb4ed2ec45f9481ae2 /Lib/test/test_tokenize.py | |
parent | a0154c0f0ee38b1b8a05eac181a35c78ca1508f4 (diff) | |
download | cpython-724f6a67f241f39394b15c419570920ebdfefacb.zip cpython-724f6a67f241f39394b15c419570920ebdfefacb.tar.gz cpython-724f6a67f241f39394b15c419570920ebdfefacb.tar.bz2 |
Rename test_pep####.py files
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r-- | Lib/test/test_tokenize.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 77c0423..4c469a8 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -1529,12 +1529,13 @@ class TestRoundtrip(TestCase): tempdir = os.path.dirname(fn) or os.curdir testfiles = glob.glob(os.path.join(tempdir, "test*.py")) - # Tokenize is broken on test_pep3131.py because regular expressions are - # broken on the obscure unicode identifiers in it. *sigh* - # With roundtrip extended to test the 5-tuple mode of untokenize, - # 7 more testfiles fail. Remove them also until the failure is diagnosed. + # Tokenize is broken on test_unicode_identifiers.py because regular + # expressions are broken on the obscure unicode identifiers in it. + # *sigh* With roundtrip extended to test the 5-tuple mode of + # untokenize, 7 more testfiles fail. Remove them also until the + # failure is diagnosed. - testfiles.remove(os.path.join(tempdir, "test_pep3131.py")) + testfiles.remove(os.path.join(tempdir, "test_unicode_identifiers.py")) for f in ('buffer', 'builtin', 'fileio', 'inspect', 'os', 'platform', 'sys'): testfiles.remove(os.path.join(tempdir, "test_%s.py") % f) |