I refactor my old code and want to change the names of functions in accordance with pep8. But I want to maintain backward compatibility with old parts of system (a complete refa
You can bind your function object to another name in your module's namespace, e.g:
def funcOld(a): return a func_new = funcOld