[Python-checkins] bpo-45104: Clarify when __init__ is called (GH-28210)

ambv webhook-mailer at python.org
Tue Sep 7 12:04:44 EDT 2021


https://github.com/python/cpython/commit/fa15df77f02ba4a66ba0b71989381a426038be01
commit: fa15df77f02ba4a66ba0b71989381a426038be01
branch: main
author: Raymond Hettinger <rhettinger at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-09-07T18:04:39+02:00
summary:

bpo-45104: Clarify when __init__ is called (GH-28210)

files:
M Doc/reference/datamodel.rst

diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 46d9c3a95473c..bf3f5082fd5e0 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -1272,7 +1272,7 @@ Basic customization
    as necessary before returning it.
 
    If :meth:`__new__` is invoked during object construction and it returns an
-   instance or subclass of *cls*, then the new instance’s :meth:`__init__` method
+   instance of *cls*, then the new instance’s :meth:`__init__` method
    will be invoked like ``__init__(self[, ...])``, where *self* is the new instance
    and the remaining arguments are the same as were passed to the object constructor.
 



More information about the Python-checkins mailing list