diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2022-09-06 23:24:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 23:24:34 (GMT) |
commit | 147eb723b2521e7cf889f6b24ca49adbefa0bf65 (patch) | |
tree | 0e1161f0885263503a51dfeaca082c1eb3e20284 /Lib/distutils/command | |
parent | 05692c67c51b78a5a5a7bb61d646519025e38015 (diff) | |
download | cpython-147eb723b2521e7cf889f6b24ca49adbefa0bf65.zip cpython-147eb723b2521e7cf889f6b24ca49adbefa0bf65.tar.gz cpython-147eb723b2521e7cf889f6b24ca49adbefa0bf65.tar.bz2 |
gh-96628: remove deprecated and ignored arg of sysconfig.is_python_build() (GH-96629)
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 01d5331..a22a5d0 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -323,7 +323,7 @@ class install(Command): self.config_vars['userbase'] = self.install_userbase self.config_vars['usersite'] = self.install_usersite - if sysconfig.is_python_build(True): + if sysconfig.is_python_build(): self.config_vars['srcdir'] = sysconfig.get_config_var('srcdir') self.expand_basedirs() |