[pypy-commit] pypy stdlib-2.7.8: fixed syntax error

alex_gaynor noreply at buildbot.pypy.org
Sat Aug 23 19:01:19 CEST 2014


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: stdlib-2.7.8
Changeset: r73008:9898ba3f3289
Date: 2014-08-23 10:00 -0700
http://bitbucket.org/pypy/pypy/changeset/9898ba3f3289/

Log:	fixed syntax error

diff --git a/pypy/module/_io/interp_bufferedio.py b/pypy/module/_io/interp_bufferedio.py
--- a/pypy/module/_io/interp_bufferedio.py
+++ b/pypy/module/_io/interp_bufferedio.py
@@ -921,7 +921,7 @@
         if writer:
             if self.w_writer is None:
                 raise oefmt(space.w_ValueError,
-                            "I/O operation on uninitialized object"
+                            "I/O operation on uninitialized object")
             w_meth = space.getattr(self.w_writer, space.wrap(method))
             w_result = space.call_args(w_meth, __args__)
         if reader:


More information about the pypy-commit mailing list