This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: csv "dialect = 'excel-tab'" to use excel_tab
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: skip.montanaro Nosy List: goldner, skip.montanaro
Priority: normal Keywords:

Created on 2006-10-07 00:06 by goldner, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg30177 - (view) Author: Dan Goldner (goldner) Date: 2006-10-07 00:06
Python Library Reference v2.5 (19 September 2006),
section 9.1.1, entry for class excel_tab: 

Documentation should note that though the class is
excel_tab (with an underscore), the dialect name is
'excel-tab' (with a hyphen). 

Possible fix is to add a sentence: 

class excel_tab(  	)
    The excel_tab class defines the usual properties of
an Excel-generated TAB-delimited file. Specify in
reader, writer, etc. with "dialect = 'excel-tab'" (with
a hyphen, not an underscore). 
msg30178 - (view) Author: Skip Montanaro (skip.montanaro) * (Python triager) Date: 2006-10-07 11:21
Logged In: YES 
user_id=44345

Thanks.  Checked in as revision 52218 on svn trunk.  I'm having some
svn trouble with the 2.5 maintenance branch but will check it in there
as well once that's working again.
History
Date User Action Args
2022-04-11 14:56:20adminsetgithub: 44094
2006-10-07 00:06:00goldnercreate