[pypy-svn] pypy default: Fix a stupid typo.

alex_gaynor commits-noreply at bitbucket.org
Thu Feb 3 02:53:00 CET 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r41579:3a39da00a0d6
Date: 2011-02-02 20:52 -0500
http://bitbucket.org/pypy/pypy/changeset/3a39da00a0d6/

Log:	Fix a stupid typo.

diff --git a/pypy/module/_io/interp_stringio.py b/pypy/module/_io/interp_stringio.py
--- a/pypy/module/_io/interp_stringio.py
+++ b/pypy/module/_io/interp_stringio.py
@@ -147,7 +147,6 @@
         return space.wrap(self.buf is None)
 
     def line_buffering_get_w(space, self):
-        self._check_closed(self)
         return space.w_False
 
 W_StringIO.typedef = TypeDef(


More information about the Pypy-commit mailing list