I've been trying to get a method name within this method. I found similar question on stack about getting name for function but solution there did not help
Example:
class Test():
def meth(self):
print(meth.__name__) # doesn't work
print(neth.func_name()) # doesn't work either
return 0
These cases worked with function but in method I can't even call meth.something