Author: Amaury Forgeot d'Arc <amaur...@gmail.com>
Branch: stdlib-2.7.3
Changeset: r55675:f44735787025
Date: 2012-06-15 00:38 +0200
http://bitbucket.org/pypy/pypy/changeset/f44735787025/

Log:    oops

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
@@ -696,7 +696,7 @@
                 # Buffer as much as possible
                 for i in range(available):
                     self.buffer[self.write_end + i] = data[i]
-                    self.write_end += available
+                self.write_end += available
                 # Modifying the existing exception will will change
                 # e.characters_written but not e.args[2].  Therefore
                 # we just replace with a new error.
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to