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.Sniffer - says "1 method", shows 2
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: frankmillman, skip.montanaro
Priority: normal Keywords:

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

Messages (3)
msg28770 - (view) Author: Frank Millman (frankmillman) Date: 2006-06-10 07:33
From the csv module -

-----------------
class Sniffer( ) 
[...]
The Sniffer class provides a single method: 
[...]
sniff( sample[,delimiters=None]) 
[...]
has_header( sample) 
[...]
-----------------

It says "provides a single method", and then shows two 
methods.

One is not sure whether "has_header" is part of 
Sniffer or not.

Frank Millman
msg28771 - (view) Author: Frank Millman (frankmillman) Date: 2006-06-10 09:10
Logged In: YES 
user_id=1070042

Apologies - I see this has been fixed in 2.5

Frank
msg28772 - (view) Author: Skip Montanaro (skip.montanaro) * (Python triager) Date: 2006-06-10 14:03
Logged In: YES 
user_id=44345

Nevertheless, this change should have been backported.  Thanks for the catch.  
I'll have the correction to the 2.4 branch checked in momentarily.

Skip
History
Date User Action Args
2022-04-11 14:56:18adminsetgithub: 43483
2006-06-10 07:33:19frankmillmancreate