[issue10445] _ast py3k : add lineno back to args node

2014-06-28 Thread Claudiu Popa

Claudiu Popa added the comment:

It seems that this was actual the case for Python 3.2 and 3.3, but fixed in 
3.4. Unfortunately, it's too late now to add those fields back, since 3.2 and 
3.3 receives only security updates. So I guess this issue can be closed.

--
resolution:  - out of date
stage: needs patch - resolved
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10445
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10445] _ast py3k : add lineno back to args node

2014-06-12 Thread Claudiu.Popa

Claudiu.Popa added the comment:

This doesn't seem to be the case for Python 3.4. Also, _ast.arguments didn't 
have lineno and col_offset attributes neither in Python 2. But the _arg.arg 
nodes have those attributes, as seen in this example.

 from ast import parse
 parse(
... def test(a): pass
... )
_ast.Module object at 0x02E43330
 f=_
 f.body[0].args
_ast.arguments object at 0x02E43390
 f.body[0].args.lineno
Traceback (most recent call last):
  File stdin, line 1, in module
AttributeError: 'arguments' object has no attribute 'lineno'
 f.body[0].args.args
[_ast.arg object at 0x02E43270]
 f.body[0].args.args[0].lineno
2


--
nosy: +Claudiu.Popa
type: resource usage - behavior

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10445
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10445] _ast py3k : add lineno back to args node

2012-09-11 Thread Ezio Melotti

Changes by Ezio Melotti ezio.melo...@gmail.com:


--
components: +Interpreter Core -None
nosy: +ncoghlan
stage:  - needs patch
versions: +Python 3.3, Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10445
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10445] _ast py3k : add lineno back to args node

2010-11-20 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +benjamin.peterson

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10445
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue10445] _ast py3k : add lineno back to args node

2010-11-17 Thread Emile Anclin

New submission from Emile Anclin emile.anc...@logilab.fr:

For Python3x, in the tree generated by _ast, for the args node (representing 
an argument of a function), the lineno (and the col_offset) information 
disappeared from those nodes.

It would be nice to have them back (for instance for Pylint)

--
components: None
messages: 121357
nosy: emile.anclin
priority: normal
severity: normal
status: open
title: _ast py3k : add lineno back to args node
type: resource usage
versions: Python 3.2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue10445
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com