summaryrefslogtreecommitdiff
path: root/Lib/socketserver.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-10-19 18:07:05 +0300
committerBerker Peksag <berker.peksag@gmail.com>2014-10-19 18:07:05 +0300
commit1ac40d13dad64cf5ab6d90215ea0d7d36efe70f2 (patch)
tree17810eb7fc08223c3e9ced5461d28633b56c71c8 /Lib/socketserver.py
parentd81cb0719d63f56889833af75cfd9ab3b47e9c87 (diff)
parentb4e9eaf6ff29c9df4cc2f60e4f125f4e65353456 (diff)
downloadcpython-1ac40d13dad64cf5ab6d90215ea0d7d36efe70f2.tar.gz
Issue #22186: Fix typos in Lib/.
Patch by F?vry Thibault.
Diffstat (limited to 'Lib/socketserver.py')
-rw-r--r--Lib/socketserver.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/socketserver.py b/Lib/socketserver.py
index f1b0e4a620..fc4ee4eed0 100644
--- a/Lib/socketserver.py
+++ b/Lib/socketserver.py
@@ -288,7 +288,7 @@ class BaseServer:
deadline = time() + timeout
# Wait until a request arrives or the timeout expires - the loop is
- # necessary to accomodate early wakeups due to EINTR.
+ # necessary to accommodate early wakeups due to EINTR.
with _ServerSelector() as selector:
selector.register(self, selectors.EVENT_READ)