zio icon indicating copy to clipboard operation
zio copied to clipboard

figure out why zio doesn't work in interactive python env

Open zTrix opened this issue 9 years ago • 3 comments

zTrix avatar Jul 31 '14 12:07 zTrix

from zio import *
io = zio('echo 123')
print io.read()

run this in interactive mode, for example in ipython, it will print out nothing. figure out why?

zTrix avatar Oct 28 '14 13:10 zTrix

Can't reproduce

In [1]: from zio import *

In [2]: io = zio('echo 123')

In [3]: print io.read() 123 123

fqj1994 avatar Oct 28 '14 16:10 fqj1994

arch: In [1]: from zio import *

In [2]: io = zio('echo 123')

In [3]: print io.read() 123 123

Mac: In [1]: from zio import *

In [2]: io = zio('echo 123')

In [3]: print io.read()

Qoobee avatar Oct 28 '14 16:10 Qoobee