mirror of
https://github.com/python/cpython.git
synced 2025-09-29 19:56:59 +00:00
Fix misplaced positional argument in OS X support library (#1137)
This commit is contained in:
parent
413a8913ae
commit
7ac96ec60e
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ def _remove_universal_flags(_config_vars):
|
|||
# Do not alter a config var explicitly overridden by env var
|
||||
if cv in _config_vars and cv not in os.environ:
|
||||
flags = _config_vars[cv]
|
||||
flags = re.sub(r'-arch\s+\w+\s', ' ', flags, re.ASCII)
|
||||
flags = re.sub(r'-arch\s+\w+\s', ' ', flags, flags=re.ASCII)
|
||||
flags = re.sub('-isysroot [^ \t]*', ' ', flags)
|
||||
_save_modified_value(_config_vars, cv, flags)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue