diff --git a/Doc/whatsnew/whatsnew23.tex b/Doc/whatsnew/whatsnew23.tex index c1e9b321963..d32b1c205d8 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)