From 15cf4f01001207f6d225f523ee7973ef86d0e113 Mon Sep 17 00:00:00 2001 From: Just van Rossum Date: Mon, 25 Oct 2004 16:10:53 +0000 Subject: [PATCH] Updated doc strings. --- Lib/plat-mac/plistlib.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Lib/plat-mac/plistlib.py b/Lib/plat-mac/plistlib.py index 061a55ed392..23bc33f6547 100644 --- a/Lib/plat-mac/plistlib.py +++ b/Lib/plat-mac/plistlib.py @@ -253,8 +253,7 @@ class PlistWriter(DumbXMLWriter): class Dict(dict): - """Convenience dictionary subclass: it allows dict construction using - keyword arguments (just like dict() in 2.3) as well as attribute notation + """Convenience dictionary subclass: it allows attribute notation to retrieve values, making d.foo equivalent to d["foo"]. """ @@ -277,7 +276,7 @@ class Dict(dict): class Plist(Dict): - """This class has been deprecated! Use the Dict with readPlist() and + """This class has been deprecated. Use the Dict with readPlist() and writePlist() functions instead. """