From: Jack McCracken Date: Fri, 14 Apr 2017 14:45:17 +0000 (-0400) Subject: Fix misplaced positional argument in OS X support library (#1135) X-Git-Tag: v3.5.4rc1~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d960d766cf69152c71aa0fc62fa31af1aa174e1e;p=thirdparty%2FPython%2Fcpython.git Fix misplaced positional argument in OS X support library (#1135) --- diff --git a/Lib/_osx_support.py b/Lib/_osx_support.py index 13fcd8b8d25b..03d36c9f600a 100644 --- a/Lib/_osx_support.py +++ b/Lib/_osx_support.py @@ -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('-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)