mirror of
https://github.com/python/cpython.git
synced 2025-08-28 20:56:54 +00:00
#27364: fix "incorrect" uses of escape character in the stdlib.
And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter.
This commit is contained in:
parent
513d7478a1
commit
44b548dda8
83 changed files with 324 additions and 324 deletions
4
setup.py
4
setup.py
|
@ -838,7 +838,7 @@ class PyBuildExt(build_ext):
|
|||
# find out which version of OpenSSL we have
|
||||
openssl_ver = 0
|
||||
openssl_ver_re = re.compile(
|
||||
'^\s*#\s*define\s+OPENSSL_VERSION_NUMBER\s+(0x[0-9a-fA-F]+)' )
|
||||
r'^\s*#\s*define\s+OPENSSL_VERSION_NUMBER\s+(0x[0-9a-fA-F]+)' )
|
||||
|
||||
# look for the openssl version header on the compiler search path.
|
||||
opensslv_h = find_file('openssl/opensslv.h', [],
|
||||
|
@ -1724,7 +1724,7 @@ class PyBuildExt(build_ext):
|
|||
# All existing framework builds of Tcl/Tk don't support 64-bit
|
||||
# architectures.
|
||||
cflags = sysconfig.get_config_vars('CFLAGS')[0]
|
||||
archs = re.findall('-arch\s+(\w+)', cflags)
|
||||
archs = re.findall(r'-arch\s+(\w+)', cflags)
|
||||
|
||||
tmpfile = os.path.join(self.build_temp, 'tk.arch')
|
||||
if not os.path.exists(self.build_temp):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue