---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
<ipython-input-59-9cc297439fb9> in <module>()
11 sio.write(unicode("hello\n"))
12 sio.flush() # it is buffering. required to get the data out *now*
---> 13 hello = sio.readline()
14 # if line[0] == '>':
15 # print "found a >"
/home/dvoong/opentrv/ors/virtualenv/local/lib/python2.7/site-packages/serial/serialutil.pyc in readinto(self, b)
529 def seekable(self): return False
530 def readinto(self, b):
--> 531 data = self.read(len(b))
532 n = len(data)
533 try:
/home/dvoong/opentrv/ors/virtualenv/local/lib/python2.7/site-packages/serial/serialposix.pyc in read(self, size)
459 while len(read) < size:
460 try:
--> 461 ready,_,_ = select.select([self.fd],[],[], self._timeout)
462 # If select was used with a timeout, and the timeout occurs, it
463 # returns with empty lists -> thus abort read operation.
KeyboardInterrupt: