]> granicus.if.org Git - python/commitdiff
Rename test_pep####.py files
authorZachary Ware <zachary.ware@gmail.com>
Fri, 9 Sep 2016 19:55:37 +0000 (12:55 -0700)
committerZachary Ware <zachary.ware@gmail.com>
Fri, 9 Sep 2016 19:55:37 +0000 (12:55 -0700)
Lib/test/test_baseexception.py [moved from Lib/test/test_pep352.py with 100% similarity]
Lib/test/test_dict_version.py [moved from Lib/test/test_pep509.py with 100% similarity]
Lib/test/test_exception_hierarchy.py [moved from Lib/test/test_pep3151.py with 100% similarity]
Lib/test/test_generator_stop.py [moved from Lib/test/test_pep479.py with 100% similarity]
Lib/test/test_tokenize.py
Lib/test/test_unicode_file_functions.py [moved from Lib/test/test_pep277.py with 100% similarity]
Lib/test/test_unicode_identifiers.py [moved from Lib/test/test_pep3131.py with 100% similarity]
Lib/test/test_utf8source.py [moved from Lib/test/test_pep3120.py with 100% similarity]
Lib/test/test_yield_from.py [moved from Lib/test/test_pep380.py with 100% similarity]

index 77c0423d19e8818b09417da2e17ef4a1b09f9783..4c469a890f8f0055287fbb276e7ed61427918a9e 100644 (file)
@@ -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)