3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Python 3.x issues

This commit is contained in:
Christoph M. Wintersteiger 2015-10-30 06:31:16 -07:00
parent 64fa2db3ff
commit 28ba92b298
3 changed files with 4 additions and 4 deletions

View file

@ -191,7 +191,7 @@ def mk_zip():
os.chdir(DIST_DIR)
zfname = '%s.zip' % dist_path
ZIPOUT = zipfile.ZipFile(zfname, 'w', zipfile.ZIP_DEFLATED)
os.path.walk(dist_path, mk_zip_visitor, '*')
os.walk(dist_path, mk_zip_visitor, '*')
if is_verbose():
print("Generated '%s'" % zfname)
except:

View file

@ -512,7 +512,7 @@ def dos2unix_tree_core(pattern, dir, files):
dos2unix(fname)
def dos2unix_tree():
os.path.walk('src', dos2unix_tree_core, '*')
os.walk('src', dos2unix_tree_core, '*')
def check_eol():
if not IS_WINDOWS:

View file

@ -206,7 +206,7 @@ def mk_zip_core(x64):
os.chdir(DIST_DIR)
zfname = '%s.zip' % dist_path
ZIPOUT = zipfile.ZipFile(zfname, 'w', zipfile.ZIP_DEFLATED)
os.path.walk(dist_path, mk_zip_visitor, '*')
os.walk(dist_path, mk_zip_visitor, '*')
if is_verbose():
print("Generated '%s'" % zfname)
except:
@ -248,7 +248,7 @@ def cp_vs_runtime_core(x64):
vcdir = os.environ['VCINSTALLDIR']
path = '%sredist\\%s' % (vcdir, platform)
VS_RUNTIME_FILES = []
os.path.walk(path, cp_vs_runtime_visitor, '*.dll')
os.walk(path, cp_vs_runtime_visitor, '*.dll')
bin_dist_path = os.path.join(DIST_DIR, get_dist_path(x64), 'bin')
for f in VS_RUNTIME_FILES:
shutil.copy(f, bin_dist_path)