diff options
author | Victor Stinner <vstinner@python.org> | 2024-06-17 16:09:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-17 16:09:26 (GMT) |
commit | d9b4316374ac27ec38ca8c829ff3fc2367ebd095 (patch) | |
tree | a7d157a4b3841c77bdda782e6e4df5e24ea01bcd /Tools/patchcheck/patchcheck.py | |
parent | 6acf7776ef8e0f08e1d4b4b5511bea8d716f571f (diff) | |
download | cpython-d9b4316374ac27ec38ca8c829ff3fc2367ebd095.zip cpython-d9b4316374ac27ec38ca8c829ff3fc2367ebd095.tar.gz cpython-d9b4316374ac27ec38ca8c829ff3fc2367ebd095.tar.bz2 |
gh-120417: Remove unused imports in Tools (#120623)
Diffstat (limited to 'Tools/patchcheck/patchcheck.py')
-rwxr-xr-x | Tools/patchcheck/patchcheck.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Tools/patchcheck/patchcheck.py b/Tools/patchcheck/patchcheck.py index af1f058..fc338f3 100755 --- a/Tools/patchcheck/patchcheck.py +++ b/Tools/patchcheck/patchcheck.py @@ -1,8 +1,6 @@ #!/usr/bin/env python3 """Check proposed changes for common issues.""" -import re import sys -import shutil import os.path import subprocess import sysconfig |