commit | ddaa7064ee81c48adc4fdea327892c29179f7845 | [log] [tgz] |
---|---|---|
author | Ka-Ping Yee <ping@zesty.ca> | Mon Mar 17 20:35:15 2008 +0000 |
committer | Ka-Ping Yee <ping@zesty.ca> | Mon Mar 17 20:35:15 2008 +0000 |
tree | e51842456cd053a08607b590f7a8303068be56bd | |
parent | e84b6336db4a2521de91aa916676bdf494aa8205 [diff] [blame] |
Patch from jbalogh fixes issue #2282 (misnamed seekable() method).
diff --git a/Lib/io.py b/Lib/io.py index 24bf37b..98843d3 100644 --- a/Lib/io.py +++ b/Lib/io.py
@@ -1203,7 +1203,7 @@ # were rendered by the decoder after feeding it those bytes. We # use this to reconstruct intermediate decoder states in tell(). - def _seekable(self): + def seekable(self): return self._seekable def flush(self):