Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b90535f

Browse files
committed
Merged revisions 76989 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r76989 | martin.v.loewis | 2009-12-21 20:25:56 +0100 (Mo, 21 Dez 2009) | 1 line Drop 2.4 compatibility. ........
1 parent 65ff07b commit b90535f

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

PCbuild/build_ssl.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,8 @@ def create_makefile64(makefile, m32):
102102
"""
103103
if not os.path.isfile(m32):
104104
return
105-
# 2.4 compatibility
106-
fin = open(m32)
107-
if 1: # with open(m32) as fin:
108-
fout = open(makefile, 'w')
109-
if 1: # with open(makefile, 'w') as fout:
105+
with open(m32) as fin:
106+
with open(makefile, 'w') as fout:
110107
for line in fin:
111108
line = line.replace("=tmp32", "=tmp64")
112109
line = line.replace("=out32", "=out64")

0 commit comments

Comments
 (0)