diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-10-19 18:07:05 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-10-19 18:07:05 +0300 |
commit | 1ac40d13dad64cf5ab6d90215ea0d7d36efe70f2 (patch) | |
tree | 17810eb7fc08223c3e9ced5461d28633b56c71c8 /Lib/socketserver.py | |
parent | d81cb0719d63f56889833af75cfd9ab3b47e9c87 (diff) | |
parent | b4e9eaf6ff29c9df4cc2f60e4f125f4e65353456 (diff) | |
download | cpython-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.py | 2 |
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) |