Of Syntax Warnings and Symbol Tables

from blog Allison Kaptur, | ↗ original
A Hacker Schooler hit an interesting bug today: her program would sometimes emit the message SyntaxWarning: import * only allowed at module level. I had never seen a SyntaxWarning before, so I decided to dig in. The wording of the warning is strange: it says that star-import is only allowed at the module level, but it’s not a syntax error, just...