diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2009-03-24 09:49:11 +0100 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2009-03-24 09:49:11 +0100 |
commit | a25af796c31e33a827d47102d83db389cab846ab (patch) | |
tree | 7dd2b3ac16efaa1ff033f8f5351c1632a4fdc8af /protocols.py | |
parent | a8ae7b8240ec5884cf70945370e4fd9bcbfb9c4e (diff) | |
download | astroid-git-a25af796c31e33a827d47102d83db389cab846ab.tar.gz |
dont monkey patch base Node class
Diffstat (limited to 'protocols.py')
-rw-r--r-- | protocols.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/protocols.py b/protocols.py index 070b0069..8385c666 100644 --- a/protocols.py +++ b/protocols.py @@ -333,10 +333,6 @@ nodes.With.ass_type = end_ass_type # callable protocol ########################################################### -def callable_default(self): - return False -nodes.Node.callable = callable_default - def callable_true(self): return True |