diff options
author | Victor Stinner <vstinner@python.org> | 2022-10-12 08:09:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 08:09:21 (GMT) |
commit | 0895c2a066c64c84cab0821886dfa66efc1bdc2f (patch) | |
tree | f2371b25cdbf64201c90316f03370f5d0000fe6e /Lib/test/test_tools | |
parent | c39a0c335486fa8eac0f3030930f9e8769118a4f (diff) | |
download | cpython-0895c2a066c64c84cab0821886dfa66efc1bdc2f.zip cpython-0895c2a066c64c84cab0821886dfa66efc1bdc2f.tar.gz cpython-0895c2a066c64c84cab0821886dfa66efc1bdc2f.tar.bz2 |
gh-97669: Create Tools/patchcheck/ directory (#98186)
Move patchcheck.py, reindent.py and untabify.py scripts to a new
Tools/patchcheck/ directory.
Diffstat (limited to 'Lib/test/test_tools')
-rw-r--r-- | Lib/test/test_tools/test_reindent.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_tools/test_reindent.py b/Lib/test/test_tools/test_reindent.py index 34df0c5..3b0c793 100644 --- a/Lib/test/test_tools/test_reindent.py +++ b/Lib/test/test_tools/test_reindent.py @@ -9,12 +9,12 @@ import unittest from test.support.script_helper import assert_python_ok from test.support import findfile -from test.test_tools import scriptsdir, skip_if_missing +from test.test_tools import toolsdir, skip_if_missing skip_if_missing() class ReindentTests(unittest.TestCase): - script = os.path.join(scriptsdir, 'reindent.py') + script = os.path.join(toolsdir, 'patchcheck', 'reindent.py') def test_noargs(self): assert_python_ok(self.script) |