mirror of https://github.com/python/cpython.git
gh-98741: Remove useless check_home usage from is_python_build usage (GH-98743)
This commit is contained in:
parent
6777e09166
commit
a508631b3c
|
@ -1503,7 +1503,7 @@ def _platform_specific(self):
|
||||||
|
|
||||||
self._env = {k.upper(): os.getenv(k) for k in os.environ}
|
self._env = {k.upper(): os.getenv(k) for k in os.environ}
|
||||||
self._env["PYTHONHOME"] = os.path.dirname(self.real)
|
self._env["PYTHONHOME"] = os.path.dirname(self.real)
|
||||||
if sysconfig.is_python_build(True):
|
if sysconfig.is_python_build():
|
||||||
self._env["PYTHONPATH"] = STDLIB_DIR
|
self._env["PYTHONPATH"] = STDLIB_DIR
|
||||||
else:
|
else:
|
||||||
def _platform_specific(self):
|
def _platform_specific(self):
|
||||||
|
|
|
@ -260,7 +260,7 @@ def symlink_or_copy(self, src, dst, relative_symlinks_ok=False):
|
||||||
basename + ext)
|
basename + ext)
|
||||||
# Builds or venv's from builds need to remap source file
|
# Builds or venv's from builds need to remap source file
|
||||||
# locations, as we do not put them into Lib/venv/scripts
|
# locations, as we do not put them into Lib/venv/scripts
|
||||||
if sysconfig.is_python_build(True) or not os.path.isfile(srcfn):
|
if sysconfig.is_python_build() or not os.path.isfile(srcfn):
|
||||||
if basename.endswith('_d'):
|
if basename.endswith('_d'):
|
||||||
ext = '_d' + ext
|
ext = '_d' + ext
|
||||||
basename = basename[:-2]
|
basename = basename[:-2]
|
||||||
|
@ -311,7 +311,7 @@ def setup_python(self, context):
|
||||||
f for f in os.listdir(dirname) if
|
f for f in os.listdir(dirname) if
|
||||||
os.path.normcase(os.path.splitext(f)[1]) in ('.exe', '.dll')
|
os.path.normcase(os.path.splitext(f)[1]) in ('.exe', '.dll')
|
||||||
]
|
]
|
||||||
if sysconfig.is_python_build(True):
|
if sysconfig.is_python_build():
|
||||||
suffixes = [
|
suffixes = [
|
||||||
f for f in suffixes if
|
f for f in suffixes if
|
||||||
os.path.normcase(f).startswith(('python', 'vcruntime'))
|
os.path.normcase(f).startswith(('python', 'vcruntime'))
|
||||||
|
@ -326,7 +326,7 @@ def setup_python(self, context):
|
||||||
if os.path.lexists(src):
|
if os.path.lexists(src):
|
||||||
copier(src, os.path.join(binpath, suffix))
|
copier(src, os.path.join(binpath, suffix))
|
||||||
|
|
||||||
if sysconfig.is_python_build(True):
|
if sysconfig.is_python_build():
|
||||||
# copy init.tcl
|
# copy init.tcl
|
||||||
for root, dirs, files in os.walk(context.python_dir):
|
for root, dirs, files in os.walk(context.python_dir):
|
||||||
if 'init.tcl' in files:
|
if 'init.tcl' in files:
|
||||||
|
|
Loading…
Reference in New Issue