summaryrefslogtreecommitdiff
path: root/unitTests.py
diff options
context:
space:
mode:
Diffstat (limited to 'unitTests.py')
-rw-r--r--unitTests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/unitTests.py b/unitTests.py
index 53fc554..252cdd6 100644
--- a/unitTests.py
+++ b/unitTests.py
@@ -30,9 +30,9 @@ if PY_3:
else:
def _print(*args, **kwargs):
if 'end' in kwargs:
- sys.stdout.write(' '.join(map(str,args)) + kwargs['end'], flush=True)
+ sys.stdout.write(' '.join(map(str,args)) + kwargs['end'])
else:
- sys.stdout.write(' '.join(map(str,args)) + '\n', flush=True)
+ sys.stdout.write(' '.join(map(str,args)) + '\n')
print_ = _print
from cStringIO import StringIO