Path difficulties with Python 2.5 running on Cygwin
Jerry Hill
malaclypse2 at gmail.com
Fri May 8 11:36:57 EDT 2009
On Fri, May 8, 2009 at 11:29 AM, walterbyrd <walterbyrd at iname.com> wrote:
> I accidently named a script csv.py, put I deleted that.
You probably still have a stale csv.pyc in that directory. Delete that too.
To tell for sure, open the python interpreter and do:
import csv
print csv.__file__
That will tell you exactly where the csv module is being loaded from.
--
Jerry
More information about the Python-list
mailing list