From 03532182a4b044224e864a0b5134a1a15b91d510 Mon Sep 17 00:00:00 2001 From: tmlnv Date: Sun, 25 May 2025 22:36:56 +0300 Subject: [PATCH] gh-134559: Add versionadded to object.__replace__ --- Doc/library/copy.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst index 95b41f988a035b..210ad7188003e6 100644 --- a/Doc/library/copy.rst +++ b/Doc/library/copy.rst @@ -122,6 +122,8 @@ and only supports named tuples created by :func:`~collections.namedtuple`, This method should create a new object of the same type, replacing fields with values from *changes*. + .. versionadded:: 3.13 + .. seealso::