From: Raymond Hettinger Date: Wed, 10 Jan 2024 16:23:40 +0000 (-0600) Subject: gh-113625: Align object addresses in the Descriptor HowTo Guide (#113894) X-Git-Tag: v3.13.0a3~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=901a971e161e060bd95f3cf3aeebe8b48d6e6dac;p=thirdparty%2FPython%2Fcpython.git gh-113625: Align object addresses in the Descriptor HowTo Guide (#113894) --- diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index 87274a5133d1..75346f2c7618 100644 --- a/Doc/howto/descriptor.rst +++ b/Doc/howto/descriptor.rst @@ -1250,7 +1250,7 @@ instance:: >>> 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!