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

Skip Montanaro skip@pobox.com
Thu, 24 Apr 2003 13:59:48 -0500


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

That would have been my vote.  The others implementing things seemed to want
a package, so I acquiesced.  (I would have also migrated less stuff from
csv.py into _csv.c.)

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

    Fred>   from _csv import *

    Fred>   class Sniffer:
    Fred>       ...

    Fred> That seems much more reasonable to me.

How long do I have to implement this?

Skip