[pypy-commit] pypy default: Typo (thanks Vincent)

arigo pypy.commits at gmail.com
Tue Jan 5 04:07:57 EST 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r81570:06434f97e9c6
Date: 2016-01-05 10:06 +0100
http://bitbucket.org/pypy/pypy/changeset/06434f97e9c6/

Log:	Typo (thanks Vincent)

diff --git a/pypy/module/posix/interp_posix.py b/pypy/module/posix/interp_posix.py
--- a/pypy/module/posix/interp_posix.py
+++ b/pypy/module/posix/interp_posix.py
@@ -299,7 +299,7 @@
         return build_stat_result(space, st)
 
 def lstat(space, w_path):
-    "Like stat(path), but do no follow symbolic links."
+    "Like stat(path), but do not follow symbolic links."
     try:
         st = dispatch_filename(rposix_stat.lstat)(space, w_path)
     except OSError, e:


More information about the pypy-commit mailing list