diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:26:23 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:26:23 (GMT) |
commit | 9955a373a8ae5a3ac9108afc436199277fdedff7 (patch) | |
tree | 3610b83bda6f7b3731ee7790579874c0bde14ae0 /Lib/http/server.py | |
parent | 85b8f45515a08afd75ca38b3760defabd219a632 (diff) | |
download | cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.zip cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.tar.gz cpython-9955a373a8ae5a3ac9108afc436199277fdedff7.tar.bz2 |
Various minor typos in documentation and comments
Diffstat (limited to 'Lib/http/server.py')
-rw-r--r-- | Lib/http/server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py index a97aa31..4688096 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -881,7 +881,7 @@ class SimpleHTTPRequestHandler(BaseHTTPRequestHandler): def _url_collapse_path(path): """ Given a URL path, remove extra '/'s and '.' path elements and collapse - any '..' references and returns a colllapsed path. + any '..' references and returns a collapsed path. Implements something akin to RFC-2396 5.2 step 6 to parse relative paths. The utility of this function is limited to is_cgi method and helps |