Raymond Hettinger added the comment:
+1 for the idea.
Please change "failobj" to "default" to keep the terminology consistent with
the pure Python API. For reference, here's the code from
collections.MutableMapping:
def setdefault(self, key, default=None):
try:
return self[key]
except KeyError:
self[key] = default
return default
----------
nosy: +rhettinger
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue17327>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com