Closed as not planned
Description
Feature or enhancement
Make dict methods pop and get "default" a keyword argument.
Pitch
Code can be more readable.
d.get(count, 0)
# vs
d.get(count, default=0)Previous discussion
This was proposed last week on python-ideas:
https://mail.python.org/archives/list/python-ideas@python.org/thread/IFM3QL67EWQCROPIX3DNCR44F4ULMFD3/
If there's consensus, I'm up for implementing it.

