Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DefaultSortedDict #244

Open
asarkar opened this issue Oct 20, 2024 · 0 comments
Open

DefaultSortedDict #244

asarkar opened this issue Oct 20, 2024 · 0 comments

Comments

@asarkar
Copy link

asarkar commented Oct 20, 2024

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant