[Python-checkins] r58841 - python/branches/release25-maint/Doc/lib/libcsv.tex

skip.montanaro python-checkins at python.org
Sun Nov 4 16:57:44 CET 2007


Author: skip.montanaro
Date: Sun Nov  4 16:57:43 2007
New Revision: 58841

Modified:
   python/branches/release25-maint/Doc/lib/libcsv.tex
Log:
Note change to get_dialect semantics in 2.5.


Modified: python/branches/release25-maint/Doc/lib/libcsv.tex
==============================================================================
--- python/branches/release25-maint/Doc/lib/libcsv.tex	(original)
+++ python/branches/release25-maint/Doc/lib/libcsv.tex	Sun Nov  4 16:57:43 2007
@@ -126,6 +126,11 @@
 \begin{funcdesc}{get_dialect}{name}
 Return the dialect associated with \var{name}.  An \exception{Error} is
 raised if \var{name} is not a registered dialect name.
+
+\versionchanged[
+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.]{2.5}
 \end{funcdesc}
 
 \begin{funcdesc}{list_dialects}{}


More information about the Python-checkins mailing list