kamahen / pykythe

Generate code Python source cross-reference facts in Kythe format
Other
21 stars 3 forks source link

Support from ... import * #9

Open kamahen opened 5 years ago

kamahen commented 5 years ago

from ... import * is not currently supported ... the full implementation is quite tricky but a simple one would get the symtab from the imported module and add its items to the current symtab. This is somewhat similar to how builtins are handled (in effect, they are from builtins import * implicitly prefixed to each source file).