Example

>>> __builtins__.__import__ = lambda *args: object()
>>> import math as a
>>> import math as b
>>> a is b
False