DEBSOURCES
Skip Quicknav
sources / python-jedi / 0.10.0~git1%2Bf05c071-1 / test / static_analysis / class_simple.py
12345678910111213
class Base(object): class Nested(): def foo(): pass class X(Base.Nested): pass X().foo() #! 4 attribute-error X().bar()