[pypy-commit] pypy stdlib-2.7.6: typo

bdkearns noreply at buildbot.pypy.org
Tue Mar 4 05:28:56 CET 2014


Author: Brian Kearns <bdkearns at gmail.com>
Branch: stdlib-2.7.6
Changeset: r69650:b1855ef76188
Date: 2014-03-03 21:05 -0500
http://bitbucket.org/pypy/pypy/changeset/b1855ef76188/

Log:	typo

diff --git a/pypy/module/_file/interp_file.py b/pypy/module/_file/interp_file.py
--- a/pypy/module/_file/interp_file.py
+++ b/pypy/module/_file/interp_file.py
@@ -181,7 +181,7 @@
                     data = stream.read(n)
                 except OSError, e:
                     # a special-case only for read() (similar to CPython, which
-                    # also looses partial data with other methods): if we get
+                    # also loses partial data with other methods): if we get
                     # EAGAIN after already some data was received, return it.
                     if is_wouldblock_error(e):
                         got = result.build()


More information about the pypy-commit mailing list