Changeset 84b4d607 for tests/pybin
- Timestamp:
- Dec 19, 2018, 2:35:51 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 25cdca5
- Parents:
- 107b01a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/tools.py
r107b01a r84b4d607 246 246 if column: 247 247 cmd = "%s 2> /dev/null" % column 248 print(cmd)249 248 proc = Popen(cmd, stdin=PIPE, stderr=None, shell=True) 250 proc.communicate(input=text )249 proc.communicate(input=text + "\n") 251 250 else: 252 251 print(text)
Note: See TracChangeset
for help on using the changeset viewer.