From: Riahiamirreza <54557628+Riahiamirreza@users.noreply.github.com> Date: Mon, 10 Jul 2023 11:52:41 +0000 (+0330) Subject: Fix typo in datamodel.rst (#106587) X-Git-Tag: v3.13.0a1~1456 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=43389e4a3a15daaa2c4ea7059637e2fce3f38966;p=thirdparty%2FPython%2Fcpython.git Fix typo in datamodel.rst (#106587) --- diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 7f5edbbcadca..8a10a34347c2 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -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.