From f470935a1bcc2d68886977d4dfefc4e83ee87f08 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 7 Sep 2021 11:04:39 -0500 Subject: [PATCH] bpo-45104: Clarify when __init__ is called (GH-28210) (cherry picked from commit fa15df77f02ba4a66ba0b71989381a426038be01) Co-authored-by: Raymond Hettinger --- Doc/reference/datamodel.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 477daaed8d3b1f..7b54f441b6a4a0 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -1237,7 +1237,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.