mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Merged revisions 76989 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76989 | martin.v.loewis | 2009-12-21 20:25:56 +0100 (Mo, 21 Dez 2009) | 1 line Drop 2.4 compatibility. ........
This commit is contained in:
parent
65ff07b548
commit
b90535f220
1 changed files with 2 additions and 5 deletions
|
@ -102,11 +102,8 @@ def create_makefile64(makefile, m32):
|
||||||
"""
|
"""
|
||||||
if not os.path.isfile(m32):
|
if not os.path.isfile(m32):
|
||||||
return
|
return
|
||||||
# 2.4 compatibility
|
with open(m32) as fin:
|
||||||
fin = open(m32)
|
with open(makefile, 'w') as fout:
|
||||||
if 1: # with open(m32) as fin:
|
|
||||||
fout = open(makefile, 'w')
|
|
||||||
if 1: # with open(makefile, 'w') as fout:
|
|
||||||
for line in fin:
|
for line in fin:
|
||||||
line = line.replace("=tmp32", "=tmp64")
|
line = line.replace("=tmp32", "=tmp64")
|
||||||
line = line.replace("=out32", "=out64")
|
line = line.replace("=out32", "=out64")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue