summaryrefslogtreecommitdiff
path: root/Lib/compiler/transformer.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-06-11 08:35:14 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-06-11 08:35:14 +0000
commit6aaccc6b55a684771abfdad74bea742c25ded506 (patch)
treecbc2c891e55d4efdeefc356d937c2aa5471f341e /Lib/compiler/transformer.py
parente588c2ba9716a81358438b4e7cd23724dcef2ba9 (diff)
downloadcpython-git-6aaccc6b55a684771abfdad74bea742c25ded506.tar.gz
Fix errors found by pychecker
Diffstat (limited to 'Lib/compiler/transformer.py')
-rw-r--r--Lib/compiler/transformer.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/compiler/transformer.py b/Lib/compiler/transformer.py
index e1a97752d4..d30cc1a8d4 100644
--- a/Lib/compiler/transformer.py
+++ b/Lib/compiler/transformer.py
@@ -729,8 +729,6 @@ class Transformer:
def atom(self, nodelist):
return self._atom_dispatch[nodelist[0][0]](nodelist)
- n.lineno = nodelist[0][2]
- return n
def atom_lpar(self, nodelist):
if nodelist[1][0] == token.RPAR: