Mercurial > public > mercurial-scm > evolve
view docs/tutorial/testlib/arguments_printer.py @ 4619:93514c421528
docs: change `troubled` references to `unstable`
Per https://www.mercurial-scm.org/wiki/CEDVocabulary
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 27 Apr 2019 21:27:54 -0400 |
parents | aad37ffd7d58 |
children |
line wrap: on
line source
import sys formatted_args = [] UNSAFE_CHARACTERS = [" ", "!", "\"", "#", "$", "&", "'", "(", ")", "*", ",", ";", "<", ">", "?", "[", "\\", "]", "^", "`", "{", "|", "}", ":", "~", "/"] def find_unsafe(arg): for unsafe in UNSAFE_CHARACTERS: if unsafe in arg: return True return False for arg in sys.argv[1:]: if find_unsafe(arg): formatted_args.append('"%s"' % arg) else: formatted_args.append(arg) print("$ " + " ".join(formatted_args))