Mercurial > hg-stable
changeset 38392:9f42e4a83676
byteify-strings: add --inplace option to write back result
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Thu, 31 May 2018 22:28:29 +0900 |
parents | a2976c27dac4 |
children | b704da9a9dda |
files | contrib/byteify-strings.py |
diffstat | 1 files changed, 37 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/byteify-strings.py Thu May 31 22:23:30 2018 +0900 +++ b/contrib/byteify-strings.py Thu May 31 22:28:29 2018 +0900 @@ -10,8 +10,12 @@ from __future__ import absolute_import import argparse +import contextlib +import errno import io +import os import sys +import tempfile import token import tokenize @@ -162,14 +166,44 @@ tokens = replacetokens(list(tokens), fullname='<dummy>') fout.write(tokenize.untokenize(tokens)) +def tryunlink(fname): + try: + os.unlink(fname) + except OSError as err: + if err.errno != errno.ENOENT: + raise + +@contextlib.contextmanager +def editinplace(fname): + n = os.path.basename(fname) + d = os.path.dirname(fname) + fp = tempfile.NamedTemporaryFile(prefix='.%s-' % n, suffix='~', dir=d, + delete=False) + try: + yield fp + fp.close() + if os.name == 'nt': + tryunlink(fname) + os.rename(fp.name, fname) + finally: + fp.close() + tryunlink(fp.name) + def main(): ap = argparse.ArgumentParser() + ap.add_argument('-i', '--inplace', action='store_true', default=False, + help='edit files in place') ap.add_argument('files', metavar='FILE', nargs='+', help='source file') args = ap.parse_args() for fname in args.files: - with open(fname, 'rb') as fin: - fout = sys.stdout.buffer - process(fin, fout) + if args.inplace: + with editinplace(fname) as fout: + with open(fname, 'rb') as fin: + process(fin, fout) + else: + with open(fname, 'rb') as fin: + fout = sys.stdout.buffer + process(fin, fout) if __name__ == '__main__': main()