I am writing a python object class. I just realised that a bunch of my functions are in UK English instead of US English and I need to make sure others on my team can use it.
I was wondering if I can set multiple names for one function so people familiar with both versions of English can use the product.
For example:
def analyse(a, b, c):
pass
def analyze(a,b,c):
return alalyse(a, b, c)