mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
bpo-41282: (PEP 632) Deprecate distutils.sysconfig (partial implementation of the PEP) (GH-23142)
This change: * merges `distutils.sysconfig` into `sysconfig` while keeping the original functionality and * marks `distutils.sysconfig` as deprecated https://bugs.python.org/issue41282
This commit is contained in:
parent
b9ad88be03
commit
90d02e5e63
15 changed files with 209 additions and 443 deletions
|
@ -4,6 +4,7 @@ Provides the Extension class, used to describe C/C++ extension
|
|||
modules in setup scripts."""
|
||||
|
||||
import os
|
||||
import re
|
||||
import warnings
|
||||
|
||||
# This class is really only used by the "build_ext" command, so it might
|
||||
|
@ -161,7 +162,7 @@ def read_setup_file(filename):
|
|||
line = file.readline()
|
||||
if line is None: # eof
|
||||
break
|
||||
if _variable_rx.match(line): # VAR=VALUE, handled in first pass
|
||||
if re.match(_variable_rx, line): # VAR=VALUE, handled in first pass
|
||||
continue
|
||||
|
||||
if line[0] == line[-1] == "*":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue