[Python-checkins] Docs: fix dunders with too many underscores (#103955)

erlend-aasland webhook-mailer at python.org
Thu Apr 27 17:17:50 EDT 2023


https://github.com/python/cpython/commit/2cf945bec6cbfe7172c3bb4e1da8b1c3e8a54bc3
commit: 2cf945bec6cbfe7172c3bb4e1da8b1c3e8a54bc3
branch: main
author: Erlend E. Aasland <erlend.aasland at protonmail.com>
committer: erlend-aasland <erlend.aasland at protonmail.com>
date: 2023-04-27T23:17:43+02:00
summary:

Docs: fix dunders with too many underscores (#103955)

files:
M Doc/c-api/typeobj.rst
M Doc/library/__main__.rst

diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst
index fd8f49ccb1ca..e963b90628aa 100644
--- a/Doc/c-api/typeobj.rst
+++ b/Doc/c-api/typeobj.rst
@@ -1145,7 +1145,7 @@ and :c:type:`PyType_Type` effectively act as defaults.)
 
     .. data:: Py_TPFLAGS_MANAGED_DICT
 
-       This bit indicates that instances of the class have a ``__dict___``
+       This bit indicates that instances of the class have a ``__dict__``
        attribute, and that the space for the dictionary is managed by the VM.
 
        If this flag is set, :const:`Py_TPFLAGS_HAVE_GC` should also be set.
diff --git a/Doc/library/__main__.rst b/Doc/library/__main__.rst
index 761c88710f98..d29cbdff7830 100644
--- a/Doc/library/__main__.rst
+++ b/Doc/library/__main__.rst
@@ -124,7 +124,7 @@ This is where using the ``if __name__ == '__main__'`` code block comes in
 handy. Code within this block won't run unless the module is executed in the
 top-level environment.
 
-Putting as few statements as possible in the block below ``if __name___ ==
+Putting as few statements as possible in the block below ``if __name__ ==
 '__main__'`` can improve code clarity and correctness. Most often, a function
 named ``main`` encapsulates the program's primary behavior::
 



More information about the Python-checkins mailing list