diff -r d46d64e9ff51 src/org/python/compiler/CodeCompiler.java --- a/src/org/python/compiler/CodeCompiler.java Mon Feb 10 08:45:22 2014 -0700 +++ b/src/org/python/compiler/CodeCompiler.java Fri Mar 07 13:00:55 2014 +0200 @@ -974,9 +974,6 @@ if (aliases == null || aliases.size() == 0) { throw new ParseException("Internel parser error", node); } else if (aliases.size() == 1 && aliases.get(0).getInternalName().equals("*")) { - if (node.getInternalLevel() > 0) { - throw new ParseException("'import *' not allowed with 'from .'", node); - } if (my_scope.func_level > 0) { module.error("import * only allowed at module level", false, node);