diff options
author | Georg Brandl <georg@python.org> | 2007-12-02 23:15:43 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-02 23:15:43 (GMT) |
commit | 6554cb94ba328939366ac6f12104d70d52d57cdd (patch) | |
tree | ac767593229fbe98dc8780146cb1dfadd43737dd /Doc/library/csv.rst | |
parent | aacc08990bd67268f75735251403510676399fea (diff) | |
download | cpython-6554cb94ba328939366ac6f12104d70d52d57cdd.zip cpython-6554cb94ba328939366ac6f12104d70d52d57cdd.tar.gz cpython-6554cb94ba328939366ac6f12104d70d52d57cdd.tar.bz2 |
Remove a few merged versionadded/changed.
Diffstat (limited to 'Doc/library/csv.rst')
-rw-r--r-- | Doc/library/csv.rst | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 5e1bd1e..bcda1bd 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -121,13 +121,9 @@ The :mod:`csv` module defines the following functions: .. function:: get_dialect(name) - Return the dialect associated with *name*. An :exc:`Error` is raised if *name* - is not a registered dialect name. - - .. 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. + Return the dialect associated with *name*. An :exc:`Error` is raised if + *name* is not a registered dialect name. This function returns an immutable + :class:`Dialect`. .. function:: list_dialects() |