Author: Brian Kearns <[email protected]>
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()
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to