The errors in the Python 3.3 output aren't that important. The problem is with func_import_syntax_error.py, which triggers a Module.getattr over the input folder. This triggers the following code. It ends with NotFoundError and with passing tests. I don't know if that print_exc is required anymore (and why this code isn't triggered on Python 2, hadn't tested it there).
try: return [self.import_module(name, relative_only=True)] except AstroidBuildingException: raise NotFoundError(name) except Exception:# XXX pylint tests never pass here; do we need it? import traceback traceback.print_exc() raise NotFoundError(name) _______________________________________________ Python-Projects mailing list Python-Projects@lists.logilab.org http://lists.logilab.org/mailman/listinfo/python-projects