mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
gh-81057: Vendor a Subset of distutils for the c-analyzer Tool (gh-102505)
distutils was removed in November. However, the c-analyzer relies on it. To solve that here, we vendor the parts the tool needs so it can be run against 3.12+. (Also see gh-92584.) Note that we may end up removing this code later in favor of a solution in common with the peg_generator tool (which also relies on distutils). At the least, the copy here makes sure the c-analyzer tool works on 3.12+ in the meantime.
This commit is contained in:
parent
cf6e7c5e55
commit
ca066bdbed
15 changed files with 2301 additions and 0 deletions
5
Tools/c-analyzer/distutils/debug.py
Normal file
5
Tools/c-analyzer/distutils/debug.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
import os
|
||||
|
||||
# If DISTUTILS_DEBUG is anything other than the empty string, we run in
|
||||
# debug mode.
|
||||
DEBUG = os.environ.get('DISTUTILS_DEBUG')
|
Loading…
Add table
Add a link
Reference in a new issue