[Python-checkins] python/dist/src/Doc/lib libcsv.tex,1.1,1.2

Fred L. Drake, Jr. fdrake@acm.org
Thu, 24 Apr 2003 14:54:09 -0400


montanaro@users.sourceforge.net writes:
 > Modified Files:
 > 	libcsv.tex 
 > Log Message:
 > * minor tweaks relating to the package nature of the beast
 > * added an (incomplete) description of the utils.Sniffer class

Is there any chance the package structure can be flattened a bit?
Having a package to contain a single package that contains a single
module is just insane.

I think losing the "util" package would be a *really* good idea.
Turning "csv" back into a module may be a really good idea!  It could
still be a Python module that wraps _csv:

  from _csv import *

  class Sniffer:
      ...

That seems much more reasonable to me.


  -Fred

-- 
Fred L. Drake, Jr.  <fdrake at acm.org>
PythonLabs at Zope Corporation