summaryrefslogtreecommitdiff
path: root/Lib/http
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-14 01:29:13 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-11-14 01:29:13 +0000
commit22fd1c262a7aa9685ef50055e4a3c3ae0e915b16 (patch)
tree31ace7bdaedcf0dca62f4199c2fc6e7d5e8bef4f /Lib/http
parent6fe39266c8eb0b3e3f3544f6ad2214c15449e086 (diff)
parent97ce0faa4daee4d1a8191cf248861f878b0b789e (diff)
downloadcpython-git-22fd1c262a7aa9685ef50055e4a3c3ae0e915b16.tar.gz
Merge typo and grammar fixes from 3.5
Diffstat (limited to 'Lib/http')
-rw-r--r--Lib/http/cookiejar.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py
index e215398793..ac5e667dba 100644
--- a/Lib/http/cookiejar.py
+++ b/Lib/http/cookiejar.py
@@ -423,10 +423,10 @@ def join_header_words(lists):
Takes a list of lists of (key, value) pairs and produces a single header
value. Attribute values are quoted if needed.
- >>> join_header_words([[("text/plain", None), ("charset", "iso-8859/1")]])
- 'text/plain; charset="iso-8859/1"'
- >>> join_header_words([[("text/plain", None)], [("charset", "iso-8859/1")]])
- 'text/plain, charset="iso-8859/1"'
+ >>> join_header_words([[("text/plain", None), ("charset", "iso-8859-1")]])
+ 'text/plain; charset="iso-8859-1"'
+ >>> join_header_words([[("text/plain", None)], [("charset", "iso-8859-1")]])
+ 'text/plain, charset="iso-8859-1"'
"""
headers = []