Are there any programming languages with module import routines that have the following behavior:
import lib as x
import lib as y
x == y # False
This is in Python syntax; although Python would return True
from the comparison. I don't know of a language that has this kind of behavior. Is there case where this is explicitly a "language feature" and not a workaround?