summaryrefslogtreecommitdiff
path: root/Lib/http
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-26 06:03:19 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-05-26 06:03:19 +0000
commit3e04d5b3068ac67cc01a32b1d5a51ac79c9df5a1 (patch)
tree31de97216c771e456051ddbe31fc338ddf0f8b9f /Lib/http
parent4d4bc42c8b2b4b546b36e0c3ecb1e86d57017cee (diff)
parent46f50726a0047ae81d478c3a206f587b8f35ed08 (diff)
downloadcpython-git-3e04d5b3068ac67cc01a32b1d5a51ac79c9df5a1.tar.gz
Issue #27076: Merge spelling from 3.5
Diffstat (limited to 'Lib/http')
-rw-r--r--Lib/http/cookies.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py
index dbddd6cb8c..a73fe387f8 100644
--- a/Lib/http/cookies.py
+++ b/Lib/http/cookies.py
@@ -156,7 +156,7 @@ class CookieError(Exception):
# a two-way quoting algorithm. Any non-text character is translated
# into a 4 character sequence: a forward-slash followed by the
# three-digit octal equivalent of the character. Any '\' or '"' is
-# quoted with a preceeding '\' slash.
+# quoted with a preceding '\' slash.
# Because of the way browsers really handle cookies (as opposed to what
# the RFC says) we also encode "," and ";".
#