module type support #40
Labels
No Milestone
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: M-Labs/nac3#40
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently the type system is not able to represent Python modules, so names cannot be modules and therefore statements like
import xxx
do not work (as the modulexxx
cannot be bound to the namespace).The bare minimum required to support
import xxx
andimport xxx as yyy
would be sufficient, i.e. we do not have to support modules passed as function parameters, returned from functions, assigned to variables, etc. etc.See also #36 (comment)