diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2009-11-23 14:29:28 +0100 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2009-11-23 14:29:28 +0100 |
commit | a08a442fa924f94e2007552e91adae16d300b946 (patch) | |
tree | a134605c9135c9f32999ef570a1874486afd7321 /utils.py | |
parent | d432585c22ec4920f3a22f342b29ec46bf4f3d3c (diff) | |
download | astroid-git-a08a442fa924f94e2007552e91adae16d300b946.tar.gz |
include Dotan Barak spell fixes patch
Diffstat (limited to 'utils.py')
-rw-r--r-- | utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,7 +43,7 @@ def extend_class(original, addons): class ASTVisitor(object): """Abstract Base Class for Python AST Visitors. - Visitors inheritating from ASTVisitors could visit + Visitors inheriting from ASTVisitors could visit compiler.ast, _ast or astng trees. Not all methods will have to be implemented; @@ -327,7 +327,7 @@ class ASTWalker: class LocalsVisitor(ASTWalker): - """visit a project by traversing the locals dictionnary""" + """visit a project by traversing the locals dictionary""" def __init__(self): ASTWalker.__init__(self, self) self._visited = {} |