Let's say I do this class:
class Person:
__slots__ = ["j"]
def __init__(self):
self.j = 1
def hello(self):
print("Hello")
Is the method hello in the slots?
Let's say I do this class:
class Person:
__slots__ = ["j"]
def __init__(self):
self.j = 1
def hello(self):
print("Hello")
Is the method hello in the slots?
Copyright © 2021 Jogjafile Inc.
Whether or not you're using
__slots__
to control instance attributes, methods are stored on the class, not the instance:Using
__slots__
actually makes all defined attributes descriptors (see also the how-to), which are also stored on the class: