datpy
datpy copied to clipboard
Popen stdout.readline blocks
Im using: python3.4 on OsX el capitan
This line blocks https://github.com/karissa/datpy/blob/master/datpy.py#L44
thus running the code below never goes beyond the call to .link():
import datpy
mydat = datpy.Dat()
link = mydat.link("/something/bla/data.tsv") # blocks here..
print(link)
actually -q (quiet mode) avoids the output to go through stdout, removing -q from the called cmd, fixes it
@dav009 ah ok. that makes sense. thanks for finding this.
happy to make a PR, however tests get stuck in the current master branch. does that happen to you as well?