From e6a7ce123a3939de11bf54080b8aa1f11a30216d Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 30 Jun 2002 04:33:37 +0000 Subject: [PATCH] Fix bug 575221 referred to dictionary type instead of dict. --- Doc/lib/libuserdict.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/lib/libuserdict.tex b/Doc/lib/libuserdict.tex index 7e6d6669257b..d6656861e298 100644 --- a/Doc/lib/libuserdict.tex +++ b/Doc/lib/libuserdict.tex @@ -7,7 +7,7 @@ \note{This module is available for backward compatibility only. If you are writing code that does not need to work with versions of Python earlier than Python 2.2, please consider subclassing directly -from the built-in \class{dictionary} type.} +from the built-in \class{dict} type.} This module defines a class that acts as a wrapper around dictionary objects. It is a useful base class for -- 2.47.3