From: INADA Naoki Date: Tue, 4 Mar 2014 06:54:42 +0000 (+0900) Subject: Remove `write_buffer_size` read-only property. X-Git-Tag: v4.0.0b1~37^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1000%2Fhead;p=thirdparty%2Ftornado.git Remove `write_buffer_size` read-only property. --- diff --git a/tornado/iostream.py b/tornado/iostream.py index 14cdea5da..e0b815033 100644 --- a/tornado/iostream.py +++ b/tornado/iostream.py @@ -315,11 +315,6 @@ class BaseIOStream(object): """Returns true if we are currently writing to the stream.""" return bool(self._write_buffer) - @property - def write_buffer_size(self): - """Returns how many bytes in write buffer.""" - return self._write_buffer_size - def closed(self): """Returns true if the stream has been closed.""" return self._closed