|
|
|
|
|
by shirleyquirk
1647 days ago
|
|
> everything is imported globally `from package import *` yes, that is the default, but it is also possible to `from package import nil` which gives you python's `import package` behaviour
or `from package import symbol` which is just like python |
|