Commit 63fae2fa authored by Georg Brandl's avatar Georg Brandl

Remove a few merged versionadded/changed.

parent e125060f
...@@ -121,13 +121,9 @@ The :mod:`csv` module defines the following functions: ...@@ -121,13 +121,9 @@ The :mod:`csv` module defines the following functions:
.. function:: get_dialect(name) .. function:: get_dialect(name)
Return the dialect associated with *name*. An :exc:`Error` is raised if *name* Return the dialect associated with *name*. An :exc:`Error` is raised if
is not a registered dialect name. *name* is not a registered dialect name. This function returns an immutable
:class:`Dialect`.
.. versionchanged:: 2.5
This function now returns an immutable :class:`Dialect`. Previously an
instance of the requested dialect was returned. Users could modify the
underlying class, changing the behavior of active readers and writers.
.. function:: list_dialects() .. function:: list_dialects()
......
This diff is collapsed.
...@@ -147,9 +147,6 @@ The following exceptions are the exceptions that are actually raised. ...@@ -147,9 +147,6 @@ The following exceptions are the exceptions that are actually raised.
This class is derived from :exc:`EnvironmentError`. See the discussion above This class is derived from :exc:`EnvironmentError`. See the discussion above
for more information on exception instance attributes. for more information on exception instance attributes.
.. versionchanged:: 2.6
Changed :exc:`socket.error` to use this as a base class.
.. exception:: ImportError .. exception:: ImportError
......
...@@ -132,7 +132,6 @@ The :mod:`readline` module defines the following functions: ...@@ -132,7 +132,6 @@ The :mod:`readline` module defines the following functions:
Get the type of completion being attempted. Get the type of completion being attempted.
.. versionadded:: 2.6
.. function:: get_begidx() .. function:: get_begidx()
...@@ -153,6 +152,7 @@ The :mod:`readline` module defines the following functions: ...@@ -153,6 +152,7 @@ The :mod:`readline` module defines the following functions:
Get the readline word delimiters for tab-completion. Get the readline word delimiters for tab-completion.
.. function:: set_completion_display_matches_hook([function]) .. function:: set_completion_display_matches_hook([function])
Set or remove the completion display function. If *function* is Set or remove the completion display function. If *function* is
...@@ -162,7 +162,6 @@ The :mod:`readline` module defines the following functions: ...@@ -162,7 +162,6 @@ The :mod:`readline` module defines the following functions:
``function(substitution, [matches], longest_match_length)`` once ``function(substitution, [matches], longest_match_length)`` once
each time matches need to be displayed. each time matches need to be displayed.
.. versionadded:: 2.6
.. function:: add_history(line) .. function:: add_history(line)
......
...@@ -85,9 +85,6 @@ The module :mod:`socket` exports the following constants and functions: ...@@ -85,9 +85,6 @@ The module :mod:`socket` exports the following constants and functions:
accompanying :exc:`os.error`. See the module :mod:`errno`, which contains names accompanying :exc:`os.error`. See the module :mod:`errno`, which contains names
for the error codes defined by the underlying operating system. for the error codes defined by the underlying operating system.
.. versionchanged:: 2.6
:exc:`socket.error` is now a child class of :exc:`IOError`.
.. exception:: herror .. exception:: herror
......
...@@ -1438,8 +1438,6 @@ operations: ...@@ -1438,8 +1438,6 @@ operations:
Return True if the set has no elements in common with *other*. Return True if the set has no elements in common with *other*.
Sets are disjoint if and only if their interesection is the empty set. Sets are disjoint if and only if their interesection is the empty set.
.. versionadded:: 2.6
.. method:: set.issubset(other) .. method:: set.issubset(other)
set <= other set <= other
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment