Mercurial > hg
view tests/heredoctest.py @ 19861:a69a77a80900
rebase: preserve metadata from grafts of changes (issue4001)
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Tue, 01 Oct 2013 14:48:53 -0400 |
parents | 5635a4017061 |
children | 9599e86159ac |
line wrap: on
line source
import sys globalvars = {} localvars = {} lines = sys.stdin.readlines() while lines: l = lines.pop(0) if l.startswith('SALT'): print l[:-1] elif l.startswith('>>> '): snippet = l[4:] while lines and lines[0].startswith('... '): l = lines.pop(0) snippet += "\n" + l[4:] c = compile(snippet, '<heredoc>', 'single') try: exec c in globalvars, localvars except Exception, inst: print repr(inst)