]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in datamodel.rst (#106587)
authorRiahiamirreza <54557628+Riahiamirreza@users.noreply.github.com>
Mon, 10 Jul 2023 11:52:41 +0000 (15:22 +0330)
committerGitHub <noreply@github.com>
Mon, 10 Jul 2023 11:52:41 +0000 (17:22 +0530)
Doc/reference/datamodel.rst

index 7f5edbbcadca6cd6ed790daabea83516cf9aa386..8a10a34347c2def8aa91c8c6a9c568113ad11eb2 100644 (file)
@@ -1625,7 +1625,7 @@ access (use of, assignment to, or deletion of ``x.name``) for class instances.
    :meth:`__getattr__` and :meth:`__setattr__`.) This is done both for efficiency
    reasons and because otherwise :meth:`__getattr__` would have no way to access
    other attributes of the instance.  Note that at least for instance variables,
-   you can fake total control by not inserting any values in the instance attribute
+   you can take total control by not inserting any values in the instance attribute
    dictionary (but instead inserting them in another object).  See the
    :meth:`__getattribute__` method below for a way to actually get total control
    over attribute access.