tests/heredoctest.py
author Sean Farley <sean.michael.farley@gmail.com>
Sun, 21 Dec 2014 14:04:20 -0800
changeset 23738 3436e45de2fb
parent 22565 8d45a42b0c0f
child 25032 1db2127d2373
permissions -rw-r--r--
namespaces: remove names method on the namespaces object Now that there is an object for each individual namespace, we use that instead of the method on the collection of namespaces.

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 in globalvars
        except Exception, inst:
            print repr(inst)