Typo: fix inverted sense of statement (GH-23288)
Looks like a "not" was inadvertently omitted in commit e6a7ea4
.
Classmethods are useful when data stored in specific instances are *not*
needed.
Automerge-Triggered-By: GH:JulienPalard
This commit is contained in:
parent
c13d89955d
commit
9d09e1719c
|
@ -1225,7 +1225,7 @@ for whether the caller is an object or a class:
|
||||||
('F', 3)
|
('F', 3)
|
||||||
|
|
||||||
This behavior is useful whenever the method only needs to have a class
|
This behavior is useful whenever the method only needs to have a class
|
||||||
reference and does rely on data stored in a specific instance. One use for
|
reference and does not rely on data stored in a specific instance. One use for
|
||||||
class methods is to create alternate class constructors. For example, the
|
class methods is to create alternate class constructors. For example, the
|
||||||
classmethod :func:`dict.fromkeys` creates a new dictionary from a list of
|
classmethod :func:`dict.fromkeys` creates a new dictionary from a list of
|
||||||
keys. The pure Python equivalent is:
|
keys. The pure Python equivalent is:
|
||||||
|
|
Loading…
Reference in New Issue