Lisandro Dalcin wrote: > BTW, Greg, could you write an abc.py file and other ABC.py
You can't have both of those in the same directory at the same time on a case-insensitive file system. However, Python certainly takes notice of the capitalization when importing, as it fails to find the module if you don't use the same capitalization as exists in the file system. My guess is that it's reading the directory itself and comparing case-sensitively, rather than relying on the OS to compare file names. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
