]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-113625: Align object addresses in the Descriptor HowTo Guide (GH-113894...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 10 Jan 2024 17:32:52 +0000 (18:32 +0100)
committerGitHub <noreply@github.com>
Wed, 10 Jan 2024 17:32:52 +0000 (18:32 +0100)
gh-113625: Align object addresses in the Descriptor HowTo Guide (GH-113894)
(cherry picked from commit 901a971e161e060bd95f3cf3aeebe8b48d6e6dac)

Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Doc/howto/descriptor.rst

index 2469911569224abc48b85164388de9946267f02d..308aa84724e2ed02ba37a16b48fe4fabe51d5c48 100644 (file)
@@ -1203,7 +1203,7 @@ instance::
     <function D.f at 0x00C45070>
 
     >>> d.f.__self__
-    <__main__.D object at 0x1012e1f98>
+    <__main__.D object at 0x00B18C90>
 
 If you have ever wondered where *self* comes from in regular methods or where
 *cls* comes from in class methods, this is it!