This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients ezio.melotti, giunghi
Date 2010-04-14.13:26:56
SpamBayes Score 1.7358117e-07
Marked as misclassified No
Message-id <1271251618.13.0.384189049845.issue8398@psf.upfronthosting.co.za>
In-reply-to
Content
If you do "import GetMy.com_MOD" Python will search for the module named "com_MOD" in the package "GetMy".
The name of the module should be a valid Python identifier -- possibly all lowercase (see PEP8). GetMy.com_MOD is not a valid identifier, so you wouldn't even be able to do GetMy.com_MOD.some_func() once you imported it.

See http://docs.python.org/reference/simple_stmts.html#the-import-statement for more information.
History
Date User Action Args
2010-04-14 13:26:58ezio.melottisetrecipients: + ezio.melotti, giunghi
2010-04-14 13:26:58ezio.melottisetmessageid: <1271251618.13.0.384189049845.issue8398@psf.upfronthosting.co.za>
2010-04-14 13:26:56ezio.melottilinkissue8398 messages
2010-04-14 13:26:56ezio.melotticreate