Spaces:
Sleeping
Sleeping
File size: 400 Bytes
6a86ad5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"""Functions that involve magic. """
def pollute(names, objects):
"""Pollute the global namespace with symbols -> objects mapping. """
from inspect import currentframe
frame = currentframe().f_back.f_back
try:
for name, obj in zip(names, objects):
frame.f_globals[name] = obj
finally:
del frame # break cyclic dependencies as stated in inspect docs
|