diff options
author | Georg Brandl <georg@python.org> | 2015-03-08 17:15:54 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2015-03-08 17:15:54 +0100 |
commit | 548a6dc22e4a3edff76413b6bdeedcf2b8c3f30c (patch) | |
tree | d41a62e8805c423e505d7f5c4d579aac13ae1511 /sphinx/pycode/nodes.py | |
parent | 3047a23a6613d74705b6373b03e8f78b82e3c1ce (diff) | |
download | sphinx-git-548a6dc22e4a3edff76413b6bdeedcf2b8c3f30c.tar.gz |
final pep8 fixes; reactivate most warnings in flake8
Diffstat (limited to 'sphinx/pycode/nodes.py')
-rw-r--r-- | sphinx/pycode/nodes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/pycode/nodes.py b/sphinx/pycode/nodes.py index 06e664827..3b244db7f 100644 --- a/sphinx/pycode/nodes.py +++ b/sphinx/pycode/nodes.py @@ -176,6 +176,7 @@ def nice_repr(node, number2name, prefix=False): else: return "%s(%s)" % (number2name[node.type], ', '.join(map(_repr, node.children))) + def _prepr(node): if isinstance(node, Leaf): return "%s(%r, %r)" % (number2name[node.type], |