summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2007-11-04 15:57:43 +0000
committerSkip Montanaro <skip@pobox.com>2007-11-04 15:57:43 +0000
commitca741400510f382fb32fa7c8e882f3c0644dd393 (patch)
tree0ce61e73cf76324257b72a4cf53ca2554a3c9561
parent1dcb9c93fd5e69ed9af89a65976bddd5ec15474b (diff)
downloadcpython-git-ca741400510f382fb32fa7c8e882f3c0644dd393.tar.gz
Note change to get_dialect semantics in 2.5.
-rw-r--r--Doc/lib/libcsv.tex5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/lib/libcsv.tex b/Doc/lib/libcsv.tex
index e965e316f3..b566f6a975 100644
--- a/Doc/lib/libcsv.tex
+++ b/Doc/lib/libcsv.tex
@@ -126,6 +126,11 @@ name.
\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}{}