Mercurial > hg
view tests/heredoctest.py @ 28751:67a4e42a651f
py3: use absolute_import in test-minirst.py
author | Robert Stanca <robert.stanca7@gmail.com> |
---|---|
date | Mon, 04 Apr 2016 03:00:43 +0300 |
parents | 4179d054b3e9 |
children | 6a98f9408a50 |
line wrap: on
line source
from __future__ import absolute_import import sys globalvars = {} 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 += l[4:] c = compile(snippet, '<heredoc>', 'single') try: exec(c, globalvars) except Exception as inst: print(repr(inst))