I would've thought a question like this should be answered but it seems I can't find any of the solution in google.
So anyawy. Can anyone give me or link me a builtin function where it will check whether the function is infinite recursing?
A function that looks like this will be awesome
def Check(InputFunction):
if InputFunction is infinite recursing
print("blablla")/throw exception
else
run inputFunction
Is there something like that in python?
Such a program does not exist. Not in Python, nor in any programming language.
What you're asking for is something called the "Halting Problem":
REFERENCE:
http://en.wikipedia.org/wiki/Halting_problem