summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-03 21:31:47 (GMT)
committerGeorg Brandl <georg@python.org>2009-01-03 21:31:47 (GMT)
commit06788c9fe4abfdc97d8a05bf3d8a41ef321e8c3b (patch)
tree15223833b7a65c16ebd96233baa98d7997399dd9 /Doc/library
parentd509788f98e5ee6ecc638daf3be27493ae74640a (diff)
downloadcpython-06788c9fe4abfdc97d8a05bf3d8a41ef321e8c3b.zip
cpython-06788c9fe4abfdc97d8a05bf3d8a41ef321e8c3b.tar.gz
cpython-06788c9fe4abfdc97d8a05bf3d8a41ef321e8c3b.tar.bz2
Fix a few remaining problems found by rstlint.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/bdb.rst2
-rw-r--r--Doc/library/urllib.request.rst4
-rw-r--r--Doc/library/xmlrpc.client.rst4
3 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/bdb.rst b/Doc/library/bdb.rst
index b1cf200..9d75a01 100644
--- a/Doc/library/bdb.rst
+++ b/Doc/library/bdb.rst
@@ -335,7 +335,7 @@ Finally, the module defines the following functions:
Determine if there is an effective (active) breakpoint at this line of code.
Return breakpoint number or 0 if none.
-
+
Called only if we know there is a breakpoint at this location. Returns the
breakpoint that was triggered and a flag that indicates if it is ok to delete
a temporary breakpoint.
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index 0b5f892..ec55a04 100644
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -49,8 +49,8 @@ The :mod:`urllib.request` module defines the following functions:
The urlopen function from the previous version, Python 2.6 and earlier, of
the module urllib has been discontinued as urlopen can return the
file-object as the previous. The proxy handling, which in earlier was passed
- as a dict parameter to urlopen can be availed by the use of `ProxyHandler`
- objects.
+ as a dict parameter to urlopen can be availed by the use of
+ :class:`ProxyHandler` objects.
.. function:: install_opener(opener)
diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst
index 23bb650..9ee0277 100644
--- a/Doc/library/xmlrpc.client.rst
+++ b/Doc/library/xmlrpc.client.rst
@@ -513,8 +513,8 @@ transport. The following example shows how:
self.proxy = proxy
def make_connection(self, host):
self.realhost = host
- h = http.client.HTTP(self.proxy)
- return h
+ h = http.client.HTTP(self.proxy)
+ return h
def send_request(self, connection, handler, request_body):
connection.putrequest("POST", 'http://%s%s' % (self.realhost, handler))
def send_host(self, connection, host):