On Thu, Aug 21, 2008 at 5:23 PM, rogererens <[EMAIL PROTECTED]> wrote:
> Anyway, I'm just not an expert on the module-importing-machinery, and > was surprised that my change of the import statement resulted in a > working state. I understand from your statement that your work flow > would break when applying this change. Would you care to explain me > why that would be? (I apologise beforehand if this is basic Python > knowledge) Actually, this is not just about workflow - leo.core.* is the "fully qualified" module name, while core.* isn't. The fact that leo.core.* won't work is because the package is not correctly installed. So doing core.* (relative import) is discouraged in the python world, and may possible break in the future. -- Ville M. Vainio - vivainio.googlepages.com blog=360.yahoo.com/villevainio - g[mail | talk]='vivainio' --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "leo-editor" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/leo-editor?hl=en -~----------~----~----~----~------~----~------~--~---
