You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 14, 2018. It is now read-only.
'imp.find_module()' can not find .NET assemblies, but 'import' finds them just fine. The documentation states that imp is an interface to the internal implementation of import, so one would expect them to have the same behavior, but they don't.
To clarify, this works perfectly: import System
while this raises an ImportError: imp.find_module('System')
The text was updated successfully, but these errors were encountered:
'imp.find_module()' can not find .NET assemblies, but 'import' finds them just fine. The documentation states that imp is an interface to the internal implementation of import, so one would expect them to have the same behavior, but they don't.
To clarify, this works perfectly:
import System
while this raises an ImportError:
imp.find_module('System')
The text was updated successfully, but these errors were encountered: