New submission from Jim Dennis:

Code such as mydict.setdefault('eggs', []) will needlessly incur the cost of 
instantiating a list even when 'eggs' is already a valid key in mydict.  
collections.defaultdict will not do this.  detecting and automatically calling 
"callable" and "type" objects (implicit laziness) would break cases where 
callables and types are used as first class values.

Add keyword argument: lazy?  Thus mydict.setdefault('eggs',list, lazy=True) 
would generate a new list only when necessary while the default would still be 
to append a reference to list (first class) objects).

----------
messages: 300596
nosy: jimd
priority: normal
severity: normal
status: open
title: Add lazy evaluation support for dict.setdefault()
type: enhancement

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue31240>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to