Is there such s thing
This should work:
import x reload(x) from x import y del x # if the name gets in the way
You could also do
reload(__import__('x')) from x import y