diff options
Diffstat (limited to 'coverage/parser.py')
-rw-r--r-- | coverage/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/parser.py b/coverage/parser.py index e270851..e027b41 100644 --- a/coverage/parser.py +++ b/coverage/parser.py @@ -646,7 +646,7 @@ class AstArcAnalyzer(object): if node_name in ["NameConstant", "Num"]: return "Num" elif node_name == "Name": - if (( env.PY3 or env.PYVERSION >= (2, 7)) and + if ((env.PY3 or env.PYVERSION >= (2, 7)) and node.id in ["True", "False", "None"]): return "Name" return None |