I was asked to add some feature to the code originally written by other guys.
There is a python code defines a function which overwrites the build in open
function
def open(xxx):
...
I would like to access original open
function in the same python file.
The best way is to change the name of self defined open
. But I prefer not to change it since it is a hug system which may have many other files access to this method.
So, is there a way to access the build in open
even if it has been overwritten?