parent
2b3b3bf652
commit
7614b92197
2 changed files with 3 additions and 2 deletions
1
AUTHORS
1
AUTHORS
|
|
@ -92,3 +92,4 @@ that much better:
|
|||
* Crittercism
|
||||
* Alvin Liang
|
||||
* andrewmlevy
|
||||
* Chris Faulkner
|
||||
|
|
|
|||
|
|
@ -1255,11 +1255,11 @@ class BaseDict(dict):
|
|||
|
||||
def pop(self, *args, **kwargs):
|
||||
self._updated()
|
||||
super(BaseDict, self).clear(*args, **kwargs)
|
||||
super(BaseDict, self).pop(*args, **kwargs)
|
||||
|
||||
def popitem(self, *args, **kwargs):
|
||||
self._updated()
|
||||
super(BaseDict, self).clear(*args, **kwargs)
|
||||
super(BaseDict, self).popitem(*args, **kwargs)
|
||||
|
||||
def _updated(self):
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue