summaryrefslogtreecommitdiffhomepage
path: root/tests/loop.py
diff options
context:
space:
mode:
authorScott Maxwell <scott@codecobblers.com>2013-11-01 09:49:52 -0700
committerScott Maxwell <scott@codecobblers.com>2013-11-01 09:49:52 -0700
commit9662a7f779636f0328263a81cdeb76af25802970 (patch)
tree0d0caa288159db9439e22039b21127201fc09017 /tests/loop.py
parent06b866cf406c035ecaffd7a8abd31d6e07b8811a (diff)
Changes inspired by the nischu7 branch
Diffstat (limited to 'tests/loop.py')
-rw-r--r--tests/loop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/loop.py b/tests/loop.py
index b2c73ddf..6e933f83 100644
--- a/tests/loop.py
+++ b/tests/loop.py
@@ -59,7 +59,7 @@ class LoopSocket (object):
try:
if self.__mate is None:
# EOF
- return ''
+ return bytes()
if len(self.__in_buffer) == 0:
self.__cv.wait(self.__timeout)
if len(self.__in_buffer) == 0: