]> granicus.if.org Git - python/commitdiff
Note change to get_dialect semantics in 2.5. Will backport to 2.5.
authorSkip Montanaro <skip@pobox.com>
Sun, 4 Nov 2007 15:56:52 +0000 (15:56 +0000)
committerSkip Montanaro <skip@pobox.com>
Sun, 4 Nov 2007 15:56:52 +0000 (15:56 +0000)
Doc/library/csv.rst

index 98fc6c906fad49aade7ca9a8ce53c1dca7d7aa76..1be909bbead8b91bd794726e1eadee8389ddce86 100644 (file)
@@ -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()