summaryrefslogtreecommitdiffstats
path: root/Tools/patchcheck
diff options
context:
space:
mode:
authorZachary Ware <zach@python.org>2022-12-28 19:38:52 (GMT)
committerGitHub <noreply@github.com>2022-12-28 19:38:52 (GMT)
commit025b5c37800ce7a0e487a522171b479bf8235267 (patch)
treec4f5ea3c28f885ea49677294409532e255c58f0e /Tools/patchcheck
parent25590eb5dee5176f3ac60916b19450f8198e7ffc (diff)
downloadcpython-025b5c37800ce7a0e487a522171b479bf8235267.zip
cpython-025b5c37800ce7a0e487a522171b479bf8235267.tar.gz
cpython-025b5c37800ce7a0e487a522171b479bf8235267.tar.bz2
gh-100540: Remove unused Modules/_ctypes/libffi_osx/ (GH-100543)
It was an ancient, modified copy of libffi that has not been in use since GH-22855.
Diffstat (limited to 'Tools/patchcheck')
-rwxr-xr-xTools/patchcheck/patchcheck.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Tools/patchcheck/patchcheck.py b/Tools/patchcheck/patchcheck.py
index a324eaf..6dcf612 100755
--- a/Tools/patchcheck/patchcheck.py
+++ b/Tools/patchcheck/patchcheck.py
@@ -13,11 +13,11 @@ import untabify
# Excluded directories which are copies of external libraries:
# don't check their coding style
-EXCLUDE_DIRS = [os.path.join('Modules', '_ctypes', 'libffi_osx'),
- os.path.join('Modules', '_ctypes', 'libffi_msvc'),
- os.path.join('Modules', '_decimal', 'libmpdec'),
- os.path.join('Modules', 'expat'),
- os.path.join('Modules', 'zlib')]
+EXCLUDE_DIRS = [
+ os.path.join('Modules', '_decimal', 'libmpdec'),
+ os.path.join('Modules', 'expat'),
+ os.path.join('Modules', 'zlib'),
+ ]
SRCDIR = sysconfig.get_config_var('srcdir')