summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/whatsnew/whatsnew23.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew23.tex b/Doc/whatsnew/whatsnew23.tex
index c1e9b32..d32b1c2 100644
--- a/Doc/whatsnew/whatsnew23.tex
+++ b/Doc/whatsnew/whatsnew23.tex
@@ -857,7 +857,7 @@ A big ugly regular expression can parse this, but using the new
\module{csv} package is much simpler:
\begin{verbatim}
-from csv import csv
+import csv
input = open('datafile', 'rb')
reader = csv.reader(input)