tests/heredoctest.py
author Alejandro Santos <alejolp@alejolp.com>
Sun, 05 Jul 2009 11:01:30 +0200
branchstable
changeset 1124 6a5b8503058d
parent 1110 d5b3404b82ce
permissions -rw-r--r--
compat: use open() instead of file() everywhere [ original upstream message only for killdaemons here ]

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)