parent
2b3b3bf652
commit
7614b92197
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…
x
Reference in New Issue
Block a user