Add removal of dict.setdefault()
This commit is contained in:
parent
f42160765a
commit
aa6acdbce6
|
@ -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
|
||||
=========
|
||||
|
||||
|
|
Loading…
Reference in New Issue