|
|
|
|
|
by Kichererbsen
1232 days ago
|
|
importing is a _runtime_ operation: unless previously imported, the interpreter will go and import that module, executing that modules code. that can take a while. it will also bind a name in the current scope to the modules name, so... that might be considered pollution? |
|