When I was exploring a solution for the StackOverflow problem, Python Use User Defined String Class, I came with this strange python behavior.
def overriden_print(x):
print "Overriden in the past!"
from __future__ import print_function
print = overriden_print
print("Hello World!")
Output:
Overriden in the past!
Now, how can I get back the original print
behavior in python interpreter?