mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
Now during resolve if there is no class/instance attribute with appropriate name explicitly in the class, we will try to find it in the parent classes and resolve there. GitOrigin-RevId: 52ab5f0ad63cba187457ba3db6107997ede33dee
20 lines
259 B
Python
20 lines
259 B
Python
class Foo:
|
|
"""
|
|
Attributes
|
|
----------
|
|
bar
|
|
Something cool
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.bar = 1
|
|
|
|
|
|
class Baz(Foo):
|
|
"""
|
|
Attributes
|
|
----------
|
|
bar
|
|
<ref>
|
|
Re-documented but does exist still.
|
|
""" |