We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
import *
1 parent 06a8fd2 commit 3da1f69Copy full SHA for 3da1f69
1 file changed
grumpy-tools-src/grumpy_tools/compiler/stmt.py
@@ -629,6 +629,8 @@ def _import_and_bind(self, imp):
629
self.writer.write('{} = {}[{}]'.format(
630
mod.name, mod_slice.expr, binding.value))
631
self.block.bind_var(self.writer, binding.alias, mod.expr)
632
+ elif binding.bind_type == imputil.Import.STAR:
633
+ self.writer.write_checked_call1('πg.LoadMembers(πF, {}[0])', mod_slice.name)
634
else:
635
636
mod.name, mod_slice.expr, imp.name.count('.')))
0 commit comments