|
|
|
|
|
by filmor
1045 days ago
|
|
Python inports collect the locals in the "module script" and store them in a module object, which is then made available to the module that ran `import`. That module object is cached, so reimporting the module another time will not run the code again. `source` is much more primitive. |
|