In a module, I have two functions, let's call them f and g. g takes a named argument f. I'd like to call f from inside g. How do I access the function f? Unfortunately, due to compatibility issues, I can't change their names.
Edit
To clarify, this is what I mean:
def f():
... code ...
def g(f=1):
... code ...
x = f() # error, f doesn't name the function anymore
... code ...