foo.py
class Bar(object):
baz = "Lorem ipsum"
def xyz(self):
pass
Highlight xyz method, "Copy Python Path": foo.Bar.xyz
Highlight baz attribute, "Copy Python Path": foo
It would be good if copying the attribute Python path produced foo.Bar.baz instead of just the module name.
foo.pyHighlight
xyzmethod, "Copy Python Path":foo.Bar.xyzHighlight
bazattribute, "Copy Python Path":fooIt would be good if copying the attribute Python path produced
foo.Bar.bazinstead of just the module name.