diff options
author | Rafael Fontenelle <rffontenelle@users.noreply.github.com> | 2024-08-11 20:40:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-11 20:40:11 (GMT) |
commit | db8b83c2b0247f1d9b15152bbfcfe4afc7e588ed (patch) | |
tree | 66fb60f8d94b4abddf31a9a05e4ec1578f4a8154 /Doc | |
parent | 1069190bad99701bf565497fa1e46575470bf237 (diff) | |
download | cpython-db8b83c2b0247f1d9b15152bbfcfe4afc7e588ed.zip cpython-db8b83c2b0247f1d9b15152bbfcfe4afc7e588ed.tar.gz cpython-db8b83c2b0247f1d9b15152bbfcfe4afc7e588ed.tar.bz2 |
Docs: Standardise versionchanged text in weakref.rst (#122898)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/weakref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/weakref.rst b/Doc/library/weakref.rst index d6e062d..2a25ed0 100644 --- a/Doc/library/weakref.rst +++ b/Doc/library/weakref.rst @@ -197,7 +197,7 @@ See :ref:`__slots__ documentation <slots>` for details. >>> del k1 # d = {k2: 2} .. versionchanged:: 3.9 - Added support for ``|`` and ``|=`` operators, specified in :pep:`584`. + Added support for ``|`` and ``|=`` operators, as specified in :pep:`584`. :class:`WeakKeyDictionary` objects have an additional method that exposes the internal references directly. The references are not guaranteed to |