On Feb 10, 2012 3:47 PM, "Adam "Cezar" Jenkins" <[email protected]> wrote: > > On Fri, Feb 10, 2012 at 9:50 AM, Carl Meyer <[email protected]> wrote: >> >> "import .module" > > > Not arguing one way or another, but the above has always worked for me from a Python standpoint.
It shouldn't work - the Python 2.7.2 documentation says that although you're allowed: from relative_module import blah, you have to use: import module Where module doesn't start with a . or consist solely of dots, but relative_module may. -- You received this message because you are subscribed to the Google Groups "Django developers" 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/django-developers?hl=en.
