#31: Python csv and universal-newline mode
Solved!
When using Python 2.5's csv module, I keep running into a "new-line character seen in unquoted field" error.
In [16]: f = csv.reader(open("/Users/yliu/foo/data", "rb"), dialect=csv.excel_tab)
In [17]: for row in f:
print row...