summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-06-24 22:48:03 +0200
committerGeorg Brandl <georg@python.org>2012-06-24 22:48:03 +0200
commit33369cf9a534289769c9e8a3a093a0fa380dd435 (patch)
treec9afaa2bd03382107fdbea5143f6c938fe5f153f
parent26af3b223f11a59ca7802596e985b34ba2933e9c (diff)
downloadcpython-git-33369cf9a534289769c9e8a3a093a0fa380dd435.tar.gz
Fix a bunch of "versionchanged" related markup errors.
-rw-r--r--Doc/library/mailbox.rst3
-rw-r--r--Doc/library/urllib.request.rst7
-rw-r--r--Doc/reference/simple_stmts.rst1
3 files changed, 5 insertions, 6 deletions
diff --git a/Doc/library/mailbox.rst b/Doc/library/mailbox.rst
index 83a590ee68..8623630aaa 100644
--- a/Doc/library/mailbox.rst
+++ b/Doc/library/mailbox.rst
@@ -89,7 +89,8 @@ Maildir, mbox, MH, Babyl, and MMDF.
format-specific information is used. Otherwise, reasonable defaults for
format-specific information are used.
- .. versionchanged:: 3.2 support for binary input
+ .. versionchanged:: 3.2
+ Support for binary input was added.
.. method:: remove(key)
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index db26b27bdf..b4764cc2bd 100644
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -902,10 +902,9 @@ FileHandler Objects
Open the file locally, if there is no host name, or the host name is
``'localhost'``.
- This method is applicable only for local hostnames. When a remote hostname
- is given, an :exc:`URLError` is raised.
-
-.. versionchanged:: 3.2
+ .. versionchanged:: 3.2
+ This method is applicable only for local hostnames. When a remote
+ hostname is given, an :exc:`URLError` is raised.
.. _ftp-handler-objects:
diff --git a/Doc/reference/simple_stmts.rst b/Doc/reference/simple_stmts.rst
index 34ed92fc7a..73183d5564 100644
--- a/Doc/reference/simple_stmts.rst
+++ b/Doc/reference/simple_stmts.rst
@@ -393,7 +393,6 @@ assignment of an empty slice of the right type (but even this is determined by
the sliced object).
.. versionchanged:: 3.2
-
Previously it was illegal to delete a name from the local namespace if it
occurs as a free variable in a nested block.