I accidentally overwrote set by using it as a variable name in an interactive python session - is there any way that I can get access to the original set<
To use builtin wrapper, first assign its original address in a variable like X
After your work is done then set it to None and set back the original address to builtin function.
Example
X= __builtin__.isinstance__builtin__.isinstance = myininstance work is done
__builtin__.isinstance=None
__builtin__.isinstance=X