[pypy-commit] pypy small-cleanups-misc: Fix typos in comments

Vincent Legoll pypy.commits at gmail.com
Wed Dec 16 10:33:44 EST 2015


Author: Vincent Legoll <vincent.legoll at idgrilles.fr>
Branch: small-cleanups-misc
Changeset: r81357:84c16014baee
Date: 2015-12-14 09:47 +0100
http://bitbucket.org/pypy/pypy/changeset/84c16014baee/

Log:	Fix typos in comments

diff --git a/pypy/module/_socket/test/test_sock_app.py b/pypy/module/_socket/test/test_sock_app.py
--- a/pypy/module/_socket/test/test_sock_app.py
+++ b/pypy/module/_socket/test/test_sock_app.py
@@ -251,7 +251,7 @@
     from pypy.module._socket.interp_socket import addr_as_object
     if not hasattr(rsocket._c, 'sockaddr_ll'):
         py.test.skip("posix specific test")
-    # HACK: To get the correct interface numer of lo, which in most cases is 1,
+    # HACK: To get the correct interface number of lo, which in most cases is 1,
     # but can be anything (i.e. 39), we need to call the libc function
     # if_nametoindex to get the correct index
     import ctypes
@@ -513,7 +513,7 @@
     def test_getsetsockopt(self):
         import _socket as socket
         import struct
-        # A socket sould start with reuse == 0
+        # A socket should start with reuse == 0
         s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
         reuse = s.getsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR)
         assert reuse == 0


More information about the pypy-commit mailing list