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 Jeffrey.Armstrong
Recipients Jeffrey.Armstrong
Date 2013-01-06.15:20:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357485625.89.0.912311839023.issue16880@psf.upfronthosting.co.za>
In-reply-to
Content
On a platform where dynamic loading is unsupported, the function "imp_load_dynamic" is not compiled (Python/import.c:1775), and the Python function "load_dynamic" (Python/import.c:1845) will not be included in the _imp module.  However, Lib/imp.py attempts to import "load_dynamic" from _imp (Lib/imp.py:9), causing an ImportError if dynamic loading is unsupported.  

The interpreter is unable to start under these circumstances.  The error was encountered on m68k-atari-mint using GCC as the compiler.  This platform is a desktop environment, but has no support for true shared objects and libraries.
History
Date User Action Args
2013-01-06 15:20:26Jeffrey.Armstrongsetrecipients: + Jeffrey.Armstrong
2013-01-06 15:20:25Jeffrey.Armstrongsetmessageid: <1357485625.89.0.912311839023.issue16880@psf.upfronthosting.co.za>
2013-01-06 15:20:25Jeffrey.Armstronglinkissue16880 messages
2013-01-06 15:20:25Jeffrey.Armstrongcreate