Files
openide/python/testData/inspections/PyDunderSlotsInspection/classVarInBaseAndSlotsInDerived.py

5 lines
75 B
Python

class Base(object):
foo = 1
class Derived(Base):
__slots__ = 'foo'