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
commit1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0 (patch)
tree141b094c4dc7ce5297eb46e9ce881651abf9a71d /Lib/socketserver.py
parent8c06ac5e5817fc7038c92115035107f9ff6c7a64 (diff)
parentf23530f5690d2e37bba7235a6398b2c386a5b485 (diff)
downloadcpython-git-1ed2e69a4ac1a4ac5a83ce3ab332b3051eaf59f0.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)