diff options
author | Skip Montanaro <skip@pobox.com> | 2007-11-04 15:56:52 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2007-11-04 15:56:52 (GMT) |
commit | d469ff1e6a2b42b7be9407f5b84509e05371b0ec (patch) | |
tree | 1fa1c1cb25710e76bd4dfa88470c5a135f9ccbd3 | |
parent | b13f70df1b0657f3fe35695dc818fa0da967af5d (diff) | |
download | cpython-d469ff1e6a2b42b7be9407f5b84509e05371b0ec.zip cpython-d469ff1e6a2b42b7be9407f5b84509e05371b0ec.tar.gz cpython-d469ff1e6a2b42b7be9407f5b84509e05371b0ec.tar.bz2 |
Note change to get_dialect semantics in 2.5. Will backport to 2.5.
-rw-r--r-- | Doc/library/csv.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 98fc6c9..1be909b 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -127,6 +127,11 @@ The :mod:`csv` module defines the following functions: 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. .. function:: list_dialects() |