diff options
author | Julien Cristau <julien.cristau@logilab.fr> | 2014-06-03 17:28:41 +0200 |
---|---|---|
committer | Julien Cristau <julien.cristau@logilab.fr> | 2014-06-03 17:28:41 +0200 |
commit | f9a5177abbe09ef6ff704034a5f3fc9713612ddc (patch) | |
tree | 2b11349c36133a19a92fa53a1d94cb5bcd1cccc5 /bases.py | |
parent | 037c898b380b850407455e1820ce0de751e17225 (diff) | |
download | astroid-git-f9a5177abbe09ef6ff704034a5f3fc9713612ddc.tar.gz |
Fix repr for ast nodes
Diffstat (limited to 'bases.py')
-rw-r--r-- | bases.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -387,7 +387,7 @@ class NodeNG(object): return '%s(%s)' % (self.__class__.__name__, self._repr_name()) def __repr__(self): - return '<%s(%s) l.%s [%s] at Ox%x>' % (self.__class__.__name__, + return '<%s(%s) l.%s [%s] at 0x%x>' % (self.__class__.__name__, self._repr_name(), self.fromlineno, self.root().name, |