Commit ba887bb0 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Use simpler import

parent 38fc837f
...@@ -857,7 +857,7 @@ A big ugly regular expression can parse this, but using the new ...@@ -857,7 +857,7 @@ A big ugly regular expression can parse this, but using the new
\module{csv} package is much simpler: \module{csv} package is much simpler:
\begin{verbatim} \begin{verbatim}
from csv import csv import csv
input = open('datafile', 'rb') input = open('datafile', 'rb')
reader = csv.reader(input) reader = csv.reader(input)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment