From: Peter B. <pj...@fl...> - 2009-11-18 20:34:22
|
Hi, TypeError: __import__() takes at most 4 arguments (5 given) I see from the Python docs that __import__ can actually take 5 arguments, so perhaps pychecker has fallen behind the latest Python version __import__(name[, globals[, locals[, fromlist[, level]]]]) Tried adding another parameter: level=None to both definitions of __import__ in checker.py Fixed my immediate problem. Regards, Peter Bobroff |