From aa6acdbce6b07e98948a5ac64fa1b49be43853bf Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Sun, 19 Feb 2006 07:10:16 +0000 Subject: [PATCH] Add removal of dict.setdefault() --- pep-3000.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pep-3000.txt b/pep-3000.txt index a2d0f3ac2..c2cb64a6b 100644 --- a/pep-3000.txt +++ b/pep-3000.txt @@ -125,6 +125,7 @@ To be removed: * ``basestring.find()`` and ``basestring.rfind()``; use ``basestring.index()`` or ``basestring.rindex()`` in a try/except block [15]_ * ``file.xreadlines()`` method [17]_ +* ``dict.setdefault()`` [22]_ Standard library @@ -231,6 +232,9 @@ References .. [21] python-dev email http://mail.python.org/pipermail/python-dev/2006-February/061169.html +.. [22] python-dev email ("defaultdict") + http://mail.python.org/pipermail/python-dev/2006-February/061261.html + Copyright =========