tests/heredoctest.py
author Hannes Oldenburg <hannes.christian.oldenburg@gmail.com>
Fri, 22 Jul 2016 11:29:42 +0000
branchstable
changeset 29622 9c2cc107547f
parent 29485 6a98f9408a50
child 40318 55fd0fefbec4
permissions -rw-r--r--
cmdutil: warnings not issued in remove if subrepopath overlaps Previously a subrepository "sub" would cause no warnings to be issued for a file "subnot/a" if it is not removed when calling: hg remove -S "subnot/a"

from __future__ import absolute_import, print_function

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))