]> granicus.if.org Git - python/commitdiff
Correct Content-Type syntax in documentation
authorMartin Panter <vadmium+py@gmail.com>
Sat, 14 Nov 2015 00:58:32 +0000 (00:58 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Sat, 14 Nov 2015 00:58:32 +0000 (00:58 +0000)
Doc/library/urllib.request.rst
Lib/http/cookiejar.py

index 74f3c1f1428e077186829de56e82468470cbb6a7..4df0f568c85d660accb1e1fede84d90de1c72942 100644 (file)
@@ -1107,7 +1107,7 @@ The code for the sample CGI used in the above example is::
    #!/usr/bin/env python
    import sys
    data = sys.stdin.read()
-   print('Content-type: text-plain\n\nGot Data: "%s"' % data)
+   print('Content-type: text/plain\n\nGot Data: "%s"' % data)
 
 Here is an example of doing a ``PUT`` request using :class:`Request`::
 
index dbd34d28ffc72f1c52929e5017588a44531704e4..cad6b3ac60bd8fd7a7de1a2490fec79b8b16c8d0 100644 (file)
@@ -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 = []