From: Nikita Sobolev Date: Mon, 18 Sep 2023 13:04:17 +0000 (+0300) Subject: gh-108303: Fix and move `badsyntax_pep3120.py` (#109513) X-Git-Tag: v3.13.0a1~405 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4dd47c63a97b3c39cd964ad12431fcdaf76dc823;p=thirdparty%2FPython%2Fcpython.git gh-108303: Fix and move `badsyntax_pep3120.py` (#109513) Co-authored-by: Alex Waygood --- diff --git a/Lib/test/.ruff.toml b/Lib/test/.ruff.toml index a9a4a013dabe..e202766b147e 100644 --- a/Lib/test/.ruff.toml +++ b/Lib/test/.ruff.toml @@ -3,12 +3,12 @@ select = [ "F811", # Redefinition of unused variable (useful for finding test methods with the same name) ] extend-exclude = [ + # Excluded (these aren't actually executed, they're just "data files") + "tokenizedata/*.py", # Failed to lint - "badsyntax_pep3120.py", "encoded_modules/module_iso_8859_1.py", "encoded_modules/module_koi8_r.py", # Failed to parse - "badsyntax_3131.py", "support/socket_helper.py", "test_fstring.py", # TODO Fix: F811 Redefinition of unused name diff --git a/Lib/test/test_utf8source.py b/Lib/test/test_utf8source.py index 97dced8a6228..c42b6aaaab57 100644 --- a/Lib/test/test_utf8source.py +++ b/Lib/test/test_utf8source.py @@ -1,5 +1,3 @@ -# This file is marked as binary in the CVS, to prevent MacCVS from recoding it. - import unittest class PEP3120Test(unittest.TestCase): @@ -16,7 +14,7 @@ class PEP3120Test(unittest.TestCase): def test_badsyntax(self): try: - import test.badsyntax_pep3120 + import test.tokenizedata.badsyntax_pep3120 except SyntaxError as msg: msg = str(msg).lower() self.assertTrue('utf-8' in msg) diff --git a/Lib/test/badsyntax_pep3120.py b/Lib/test/tokenizedata/badsyntax_pep3120.py similarity index 100% rename from Lib/test/badsyntax_pep3120.py rename to Lib/test/tokenizedata/badsyntax_pep3120.py