summaryrefslogtreecommitdiff
path: root/Lib/test/test_socket.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-04-14 09:30:01 +0300
committerBerker Peksag <berker.peksag@gmail.com>2015-04-14 09:30:01 +0300
commit4882cacab6bcaf90ac496fc8878987598e7665c1 (patch)
tree6dab1cbde4725b432bb3fd06e329d003c6a83376 /Lib/test/test_socket.py
parent52a3b74900db90dfbc5d6ce5145bce02d172b1b1 (diff)
downloadcpython-git-4882cacab6bcaf90ac496fc8878987598e7665c1.tar.gz
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
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 0db760f64e..c8a3623675 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -707,7 +707,7 @@ class GeneralModuleTests(unittest.TestCase):
raise socket.gaierror
def testSendtoErrors(self):
- # Testing that sendto doens't masks failures. See #10169.
+ # Testing that sendto doesn't masks failures. See #10169.
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.addCleanup(s.close)
s.bind(('', 0))