diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2015-11-26 17:11:42 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2015-11-26 17:11:42 +0200 |
commit | 6963c74ffb9e69b5af8d376078dcb7ab1596a906 (patch) | |
tree | 0af603b929f6422058db6b7dcc97339cad951eba | |
parent | 4f591e7d69ab96ee2bb3eff64c42ff48114cb511 (diff) | |
download | astroid-git-6963c74ffb9e69b5af8d376078dcb7ab1596a906.tar.gz |
Add __delitem__ to deque's brain tip.
-rw-r--r-- | astroid/brain/brain_stdlib.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/astroid/brain/brain_stdlib.py b/astroid/brain/brain_stdlib.py index 002f3472..078de5ac 100644 --- a/astroid/brain/brain_stdlib.py +++ b/astroid/brain/brain_stdlib.py @@ -144,6 +144,7 @@ class deque(object): def __reversed__(self): return self.iterable[::-1] def __getitem__(self, index): pass def __setitem__(self, index, value): pass + def __delitem__(self, index): pass ''') |