diff options
author | Henry Schreiner <HenrySchreinerIII@gmail.com> | 2022-10-26 21:40:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 21:40:47 (GMT) |
commit | a508631b3cf883316cc55e04692f70f1665d49d0 (patch) | |
tree | f9c4a32f9087d58010f767eb2c5a0cd185f43a98 /Lib/test/support | |
parent | 6777e09166fc384ea0a4b50202c7b0bd7a23330c (diff) | |
download | cpython-a508631b3cf883316cc55e04692f70f1665d49d0.zip cpython-a508631b3cf883316cc55e04692f70f1665d49d0.tar.gz cpython-a508631b3cf883316cc55e04692f70f1665d49d0.tar.bz2 |
gh-98741: Remove useless check_home usage from is_python_build usage (GH-98743)
Diffstat (limited to 'Lib/test/support')
-rw-r--r-- | Lib/test/support/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 3e6a787..1dee708 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -1503,7 +1503,7 @@ class PythonSymlink: self._env = {k.upper(): os.getenv(k) for k in os.environ} self._env["PYTHONHOME"] = os.path.dirname(self.real) - if sysconfig.is_python_build(True): + if sysconfig.is_python_build(): self._env["PYTHONPATH"] = STDLIB_DIR else: def _platform_specific(self): |