summaryrefslogtreecommitdiff
path: root/Lib/test/test_socket.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-08-04 13:07:31 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-08-04 13:07:31 +0000
commit69332c1a64d6bdb80ff813fab403be832e12ce64 (patch)
treec61ce7d7f833c11b0e665d780d06107f39228342 /Lib/test/test_socket.py
parent72e483aac42a1e1bd2e2b1ed72a3c9e8dbc6be96 (diff)
downloadcpython-git-69332c1a64d6bdb80ff813fab403be832e12ce64.tar.gz
Fix spelling and grammar in documentation and code comments
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r--Lib/test/test_socket.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index c151a50dcb..4b047ee76a 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -709,7 +709,7 @@ class GeneralModuleTests(unittest.TestCase):
raise socket.gaierror
def testSendtoErrors(self):
- # Testing that sendto doesn't masks failures. See #10169.
+ # Testing that sendto doesn't mask failures. See #10169.
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.addCleanup(s.close)
s.bind(('', 0))