[ python-Bugs-1465014 ] CSV regression in 2.5a1: multi-line cells
SourceForge.net
noreply at sourceforge.net
Wed Apr 5 17:14:13 CEST 2006
Bugs item #1465014, was opened at 2006-04-05 11:14
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1465014&group_id=5470
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Python Library
Group: Python 2.5
Status: Open
Resolution: None
Priority: 7
Submitted By: David Goodger (goodger)
Assigned to: Nobody/Anonymous (nobody)
Summary: CSV regression in 2.5a1: multi-line cells
Initial Comment:
Running the attached csv_test.py under Python 2.4.2
(Windows XP SP1) produces:
>c:\apps\python24\python.exe ./csv_test.py
['one', '2', 'three (line 1)\n(line 2)']
Note that the third item in the row contains a newline
between "(line 1)" and "(line 2)".
With Python 2.5a1, I get:
>c:\apps\python25\python.exe ./csv_test.py
['one', '2', 'three (line 1)(line 2)']
Notice the missing newline, which is significant. The
CSV module under 2.5a1 seems to lose data.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1465014&group_id=5470
More information about the Python-bugs-list
mailing list