I have a python class where I have a function, trivial example below.
When I do push-tag on self.func2() in func1 it doesn't take me to func2.
class SomeClass:
def func1(self):
#Do push-tag on 'func2' below, it is not taking me to func2
self.func2()
def func2(self):
pass
Using beta2 on x64 linux, CentOS 7