It's me wrote:
> The shlex.py needs quite a number of .py files.  I tried to hunt down
a few
> of them and got really tire.
>
> Is there one batch of .py files that I can download from somewhere?
>
> Thanks,
Not sure what you mean by this.
Shlex is a standard library module.
It imports os and sys only, they are standard library modules.
If you have python you have them already.
If you mean cStringIO it is in the standard library(at least on my
system).
You dont have to use it just feed shlex an open file.
py>lexer = shlex.shlex(open('myrecord.txt', 'r'))

Hth,
M.E.Farmer

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to