tests/heredoctest.py
author Augie Fackler <raf@durin42.com>
Thu, 19 Sep 2013 15:38:42 -0400
changeset 20696 77ab0abb08a0
parent 15434 5635a4017061
child 22564 9599e86159ac
permissions -rw-r--r--
setup: handle more invalid python3 syntax This should keep the file portable to both python2 and python3.

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)