]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-113625: Align object addresses in the Descriptor HowTo Guide (#113894)
authorRaymond Hettinger <rhettinger@users.noreply.github.com>
Wed, 10 Jan 2024 16:23:40 +0000 (10:23 -0600)
committerGitHub <noreply@github.com>
Wed, 10 Jan 2024 16:23:40 +0000 (17:23 +0100)
Doc/howto/descriptor.rst

index 87274a5133d1cf71545b14bfa18664ea77c71dca..75346f2c7618c2eea8ec6a9612d32d707c6a9bc8 100644 (file)
@@ -1250,7 +1250,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!