From 5365e9379b632af7b300c521ec65f97f018c412b Mon Sep 17 00:00:00 2001 From: zhangenming <282126346@qq.com> Date: Wed, 10 Dec 2025 15:58:12 +0800 Subject: [PATCH] . --- 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 5f79c6fe8f50ff..1a3a347321b46a 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -3158,7 +3158,7 @@ Mutable sequences should provide methods like Python standard :class:`list` objects. Finally, sequence types should implement addition (meaning concatenation) and multiplication (meaning repetition) by defining the methods -:meth:`~object.__add__`, :meth:`~object.__radd__`, :meth:`~object.__iadd__`, +:meth:`~object.__add__`, :meth:`~object.__iadd__`, :meth:`~object.__mul__`, :meth:`~object.__rmul__` and :meth:`~object.__imul__` described below; they should not define other numerical operators.