[issue6448] imp.find_module() -- be explicity that 'path' must be a list

2009-07-11 Thread Georg Brandl
Georg Brandl added the comment: I reworded the paragraph a bit in r73939. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue6448] imp.find_module() -- be explicity that 'path' must be a list

2009-07-09 Thread Jordan Bettis
New submission from Jordan Bettis : Hi. I just spent a while fighting with imp.find_module because I was trying to pass the path as a string, rather than a string embedded in a list: result = find_module('mod', '/path') rather than result = find_module('mod', ['/path']) The issue is compounde