diff options
Diffstat (limited to 'Doc/library/weakref.rst')
-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 2ca864f..5dcb030 100644 --- a/Doc/library/weakref.rst +++ b/Doc/library/weakref.rst @@ -65,7 +65,7 @@ and regular expression pattern objects. .. versionchanged:: 2.4 Added support for files, sockets, arrays, and patterns. -Several builtin types such as :class:`list` and :class:`dict` do not directly +Several built-in types such as :class:`list` and :class:`dict` do not directly support weak references but can add support through subclassing:: class Dict(dict): |