diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2014-05-03 08:17:52 +0200 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2014-05-03 08:17:52 +0200 |
commit | 6008ea905e2bc648319f2045c4f88b420cca643a (patch) | |
tree | b4f2d9a7e97599f62ded6dde9a33bce78cc48fc2 /Cython/Utils.py | |
parent | 0d57141d454a36c66d030b47ba681b35e7d16eea (diff) | |
download | cython-6008ea905e2bc648319f2045c4f88b420cca643a.tar.gz |
another Py3 fix
Diffstat (limited to 'Cython/Utils.py')
-rw-r--r-- | Cython/Utils.py | 2 |
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() |