caterinaurban / Typpete

35 stars 6 forks source link

Cannot access imported function (crash) #24

Closed marcoeilers closed 7 years ago

marcoeilers commented 7 years ago

When I have e.g. the import statement "import copy", and the module (in my case it's a stub, not sure if the problem is more general) named copy contains a function "def deepcopy(o: object) -> object: ...", I cannot access this function in a method writing "copy.deepcopy(someObject)".

marcoeilers commented 7 years ago

Oh or I might be stupid and there might be either a different problem or no problem at all.