diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2014-01-29 18:15:10 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2014-01-29 18:15:10 +0200 |
commit | dce072e7bd83d3553a47650b41f2e82c06663da2 (patch) | |
tree | 57e0f056b20f6bf9790c8d605b99183fce302474 /rebuilder.py | |
parent | b03b77239045d87e62d36aac3cf91697af090286 (diff) | |
download | astroid-git-dce072e7bd83d3553a47650b41f2e82c06663da2.tar.gz |
null commit
--HG--
branch : nameconstant_py34
Diffstat (limited to 'rebuilder.py')
-rw-r--r-- | rebuilder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rebuilder.py b/rebuilder.py index 815e36cf..b9a9adbb 100644 --- a/rebuilder.py +++ b/rebuilder.py @@ -855,7 +855,7 @@ class TreeRebuilder3k(TreeRebuilder): return self.visit_assname(node, parent, node.arg) def visit_nameconstant(self, node, parent): - # in Python 3.4 we have NameConstant for True/False/None + # in Python 3.4 we have NameConstant for True / False / None newnode = new.Const(node.value) _set_infos(node, newnode, parent) return newnode |