You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The introduction shows the following example. Why not make this a first-class citizen fo the library instead of asking every user who needs it to create their own?
class DefaultSortedDict(SortedDict):
def __missing__(self, key):
value = 0
self[key] = value
return value
The text was updated successfully, but these errors were encountered:
The introduction shows the following example. Why not make this a first-class citizen fo the library instead of asking every user who needs it to create their own?
The text was updated successfully, but these errors were encountered: