summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2024-01-10 16:23:40 (GMT)
committerGitHub <noreply@github.com>2024-01-10 16:23:40 (GMT)
commit901a971e161e060bd95f3cf3aeebe8b48d6e6dac (patch)
tree96d0f7e115ead641540803531a0a76b0e78b0dd6
parent70497218351ba44bffc8b571201ecb5652d84675 (diff)
downloadcpython-901a971e161e060bd95f3cf3aeebe8b48d6e6dac.zip
cpython-901a971e161e060bd95f3cf3aeebe8b48d6e6dac.tar.gz
cpython-901a971e161e060bd95f3cf3aeebe8b48d6e6dac.tar.bz2
gh-113625: Align object addresses in the Descriptor HowTo Guide (#113894)
-rw-r--r--Doc/howto/descriptor.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst
index 87274a5..75346f2 100644
--- a/Doc/howto/descriptor.rst
+++ b/Doc/howto/descriptor.rst
@@ -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!