Message 158735 - Python tracker

Message158735

Author kensington
Recipients benjamin.peterson, georg.brandl, kensington, rhettinger, scummos, terry.reedy
Date 2012-04-19.16:57:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334854679.62.0.939132587137.issue10769@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

Attached is the updated patch by Sven Brauch from the original mailing list thread bringing column offset reporting for attributes in line with everything else.

The offsets for bar before the patch:
foo[bar] = 4
foo(bar) = 4
foo.bar = 0

After:

foo[bar] = 4
foo(bar) = 4
foo.bar = 4

With the update, are there still concerns?
History
Date User Action Args
2012-04-19 16:57:59kensingtonsetrecipients: + kensington, georg.brandl, rhettinger, terry.reedy, benjamin.peterson, scummos
2012-04-19 16:57:59kensingtonsetmessageid: <1334854679.62.0.939132587137.issue10769@psf.upfronthosting.co.za>
2012-04-19 16:57:59kensingtonlinkissue10769 messages
2012-04-19 16:57:59kensingtoncreate