]> granicus.if.org Git - python/commitdiff
[Bug #1441864] Clarify description of 'data' argument
authorAndrew M. Kuchling <amk@amk.ca>
Sat, 3 Jun 2006 18:41:28 +0000 (18:41 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Sat, 3 Jun 2006 18:41:28 +0000 (18:41 +0000)
Doc/lib/liburllib2.tex

index f77ed2535362f3b549e63ecab847eda407412d32..be36e3d3079fa1cc3015299c9bc3b4825790160d 100644 (file)
@@ -18,11 +18,13 @@ The \module{urllib2} module defines the following functions:
 Open the URL \var{url}, which can be either a string or a \class{Request}
 object.
 
-\var{data} should be a string, which specifies additional data to
-send to the server. In HTTP requests, which are the only ones that
-support \var{data}, it should be a buffer in the format of
-\mimetype{application/x-www-form-urlencoded}, for example one returned
-from \function{urllib.urlencode()}.
+\var{data} should be a string, which specifies additional data to send
+to the server. Currently HTTP requests are the only ones that use
+\var{data}.  For HTTP, the request will be a POST instead of a GET
+when the \var{data} parameter is provided.  \var{data} should be a
+buffer in the standard \mimetype{application/x-www-form-urlencoded} format.
+The \function{urllib.urlencode()} function takes a mapping or 
+sequence of 2-tuples and returns a string in this format.
 
 This function returns a file-like object with two additional methods: