mirror of
https://github.com/clearml/wexpect-venv
synced 2025-01-31 19:06:56 +00:00
16 lines
263 B
Python
16 lines
263 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import print_function
|
||
|
|
||
|
try:
|
||
|
raw_input
|
||
|
except NameError:
|
||
|
raw_input = input
|
||
|
|
||
|
while True:
|
||
|
try:
|
||
|
a = raw_input('<in >')
|
||
|
except EOFError:
|
||
|
print('<eof>')
|
||
|
break
|
||
|
print('<out>', a, sep='')
|