Commit 89c38c8a authored by Tom Niget's avatar Tom Niget

py2to3: migrate setup.py

parent 63c7150e
...@@ -15,7 +15,7 @@ def copy_file(self, infile, outfile, *args, **kw): ...@@ -15,7 +15,7 @@ def copy_file(self, infile, outfile, *args, **kw):
if infile == version["__file__"]: if infile == version["__file__"]:
if not self.dry_run: if not self.dry_run:
log.info("generating %s -> %s", infile, outfile) log.info("generating %s -> %s", infile, outfile)
with open(outfile, "w", encoding="utf-8") as f: with open(outfile, "w") as f:
for x in sorted(version.items()): for x in sorted(version.items()):
if not x[0].startswith("_"): if not x[0].startswith("_"):
f.write("%s = %r\n" % x) f.write("%s = %r\n" % x)
...@@ -33,8 +33,11 @@ def copy_file(self, infile, outfile, *args, **kw): ...@@ -33,8 +33,11 @@ def copy_file(self, infile, outfile, *args, **kw):
executable = self.distribution.command_obj['build'].executable executable = self.distribution.command_obj['build'].executable
patched = "#!%s%s\n" % (executable, m.group(1) or '') patched = "#!%s%s\n" % (executable, m.group(1) or '')
patched += src.read() patched += src.read()
with open(outfile, "w") as dst: dst = os.open(outfile, os.O_CREAT | os.O_WRONLY | os.O_TRUNC)
dst.write(patched) try:
os.write(dst, patched.encode())
finally:
os.close(dst)
return outfile, 1 return outfile, 1
cls, = self.__class__.__bases__ cls, = self.__class__.__bases__
return cls.copy_file(self, infile, outfile, *args, **kw) return cls.copy_file(self, infile, outfile, *args, **kw)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment