# HG changeset patch # User RĂ©mi Cardona # Date 1406752495 -7200 # Node ID 59a77e8847bce687f32c7fe4ed3c89be9d03ed70 # Parent 633d85ba9f724022ffdbbcd2a870a270946c70cf [view] Use io.BytesIO as stream for binary views diff -r 633d85ba9f72 -r 59a77e8847bc view.py --- a/view.py Fri Jan 16 14:12:49 2015 +0100 +++ b/view.py Wed Jul 30 22:34:55 2014 +0200 @@ -20,7 +20,7 @@ __docformat__ = "restructuredtext en" _ = unicode -from cStringIO import StringIO +from io import BytesIO from warnings import warn from functools import partial @@ -101,7 +101,7 @@ return if w is None: if self.binary: - self._stream = stream = StringIO() + self._stream = stream = BytesIO() else: self._stream = stream = UStringIO() w = stream.write @@ -471,7 +471,7 @@ return if w is None: if self.binary: - self._stream = stream = StringIO() + self._stream = stream = BytesIO() else: self._stream = stream = HTMLStream(self._cw) w = stream.write