Changeset 690166d for tests/pybin/tools.py
- Timestamp:
- Jan 11, 2019, 3:21:59 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- def9d4e
- Parents:
- 0689cd9 (diff), 52ffa30 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/tools.py
r0689cd9 r690166d 247 247 if column: 248 248 cmd = "%s 2> /dev/null" % column 249 print(cmd)250 249 proc = Popen(cmd, stdin=PIPE, stderr=None, shell=True) 251 proc.communicate(input=text )250 proc.communicate(input=text + "\n") 252 251 else: 253 252 print(text)
Note:
See TracChangeset
for help on using the changeset viewer.