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 mrts
Recipients brett.cannon, hauser, mrts
Date 2008-11-26.12:01:05
SpamBayes Score 0.0069561237
Marked as misclassified No
Message-id <1227700866.5.0.916449993922.issue2090@psf.upfronthosting.co.za>
In-reply-to
Content
Just for reference, the simplest workaround is to use:

modname = "foo.bar.baz.baq"
mod = __import__(modname, {}, {}, [modname.rsplit(".", 1)[-1]])
History
Date User Action Args
2008-11-26 12:01:06mrtssetrecipients: + mrts, brett.cannon, hauser
2008-11-26 12:01:06mrtssetmessageid: <1227700866.5.0.916449993922.issue2090@psf.upfronthosting.co.za>
2008-11-26 12:01:05mrtslinkissue2090 messages
2008-11-26 12:01:05mrtscreate