Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyOldStyleClassesInspection
/
Slot.py
blob: 849a12b0f0e41e46486218e79f7617339cc8ea4c [
file
] [
log
] [
blame
]
class
A
:
<
warning descr
=
"Old-style class contains __slots__ definition"
>
__slots__
</
warning
>=
"123"
class
Base
(
object
):
__slots__
=
"123"
class
Derived
(
Base
):
__slots__
=
"123"
class
DerivedDerived
(
Derived
):
__slots__
=
"123"