This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bronikkk
Recipients bronikkk
Date 2012-01-09.16:33:56
SpamBayes Score 4.9496906e-05
Marked as misclassified No
Message-id <1326126836.81.0.857723956921.issue13746@psf.upfronthosting.co.za>
In-reply-to
Content
Consider the following snippet (the file is attached):

==== code starts ====
a = [1, 3.14, 'abc', u'XYZ']
b = (1, 3.14, 'abc', u'XYZ')
c = {1 : 3.14, 'abc' : u'XYZ'}
===== code ends =====

The list has correct position: (1,4), the dict has correct position too: (3,4). But the position of tuple node (ast.Tuple) has wrong or inconsistent "col_offset" = 5: (2,5).
History
Date User Action Args
2012-01-09 16:33:56bronikkksetrecipients: + bronikkk
2012-01-09 16:33:56bronikkksetmessageid: <1326126836.81.0.857723956921.issue13746@psf.upfronthosting.co.za>
2012-01-09 16:33:56bronikkklinkissue13746 messages
2012-01-09 16:33:56bronikkkcreate