summaryrefslogtreecommitdiff
path: root/Cython/Utils.py
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2014-05-03 08:17:52 +0200
committerStefan Behnel <stefan_ml@behnel.de>2014-05-03 08:17:52 +0200
commit6008ea905e2bc648319f2045c4f88b420cca643a (patch)
treeb4f2d9a7e97599f62ded6dde9a33bce78cc48fc2 /Cython/Utils.py
parent0d57141d454a36c66d030b47ba681b35e7d16eea (diff)
downloadcython-6008ea905e2bc648319f2045c4f88b420cca643a.tar.gz
another Py3 fix
Diffstat (limited to 'Cython/Utils.py')
-rw-r--r--Cython/Utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Utils.py b/Cython/Utils.py
index 179c153ea..958d90653 100644
--- a/Cython/Utils.py
+++ b/Cython/Utils.py
@@ -395,5 +395,5 @@ def print_bytes(s, stream=sys.stdout):
except AttributeError:
out = stream # Py2
out.write(s)
- out.write('\n')
+ out.write(b'\n')
out.flush()