tests/heredoctest.py
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
Tue, 30 Sep 2014 16:59:07 -0400
branchstable
changeset 22602 551d776a0a9a
parent 15434 5635a4017061
child 22564 9599e86159ac
permissions -rw-r--r--
diff: document the nobinary option Since 3fbef7ac26f0, we have a diff.nobinary option. This is handy, but the only way I found out about it was by looking at the release notes for 3.1, which is not something I normally do.

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)