diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-22 19:36:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 19:36:35 (GMT) |
commit | 0bd7c879cf268df38f28cb440183d7dfa942e6e6 (patch) | |
tree | 58dc6e0c6a3c62e4aa3ab92151d9b8923b981821 /Doc/c-api | |
parent | 08416065a78516b923c1232c76f5fb674cc59618 (diff) | |
download | cpython-0bd7c879cf268df38f28cb440183d7dfa942e6e6.zip cpython-0bd7c879cf268df38f28cb440183d7dfa942e6e6.tar.gz cpython-0bd7c879cf268df38f28cb440183d7dfa942e6e6.tar.bz2 |
[3.13] gh-112066: Fix versionadded in PyDict_SetDefaultRef docs (GH-118696) (#119430)
(cherry picked from commit 447edb6e987d22c91f6dfad043f3472ce07bdfc0)
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/dict.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst index 03f3d28..49a7858 100644 --- a/Doc/c-api/dict.rst +++ b/Doc/c-api/dict.rst @@ -191,6 +191,7 @@ Dictionary Objects to both *default_value* and *\*result* (if it's not ``NULL``). These may refer to the same object: in that case you hold two separate references to it. + .. versionadded:: 3.13 |