summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-19 12:33:52 (GMT)
committerGeorg Brandl <georg@python.org>2010-12-19 12:33:52 (GMT)
commit09a7df8301bef5a5ac957371ae9e19c68acdca0a (patch)
tree7e1916896b3ea48fb5009a30e0915155a46f9a5a /Doc
parent7bc0d872ddb023333acc05b7d038cdb74cfc047b (diff)
downloadcpython-09a7df8301bef5a5ac957371ae9e19c68acdca0a.zip
cpython-09a7df8301bef5a5ac957371ae9e19c68acdca0a.tar.gz
cpython-09a7df8301bef5a5ac957371ae9e19c68acdca0a.tar.bz2
#3243 follow-up: remove debugging print and fix docs; data is a bytes object.v3.2b2
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/http.client.rst2
-rw-r--r--Doc/library/urllib.request.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst
index cba5907..d6ff2c7 100644
--- a/Doc/library/http.client.rst
+++ b/Doc/library/http.client.rst
@@ -403,7 +403,7 @@ HTTPConnection Objects
headers to send with the request.
.. versionadded:: 3.2
- *body* can be an iterable
+ *body* can now be an iterable.
.. method:: HTTPConnection.getresponse()
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index 6aa9e15..724310b 100644
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -20,7 +20,7 @@ The :mod:`urllib.request` module defines the following functions:
Open the URL *url*, which can be either a string or a
:class:`Request` object.
- *data* may be a string specifying additional data to send to the
+ *data* may be a bytes object specifying additional data to send to the
server, or ``None`` if no such data is needed. *data* may also be an
iterable object and in that case Content-Length value must be specified in
the headers. Currently HTTP requests are the only ones that use *data*; the