Am Sonntag, 29. August 2004 20:53 schrieb Patrick: > There may a bug in eric3 regarding python module files that have the same > name as a python package in the same directory. When such a condition > exists, the classview for the module does not expand. If I change the name > of either, it works. >
This is not a bug of eric3 but a bug in your directory structure. eric3 shows the same behavior like Python, namely, it picks up the package instead of the module. Therefore, you should never ever have a module and a package of the same name within the same directory. However, there was an error in eric3's behavior because in this faulty case it showed the contents of the packages __init__.py when expanding the module. This will be fixed in the next snapshot. Regards, Detlev -- Detlev Offenbach [EMAIL PROTECTED] _______________________________________________ PyKDE mailing list [EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
