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 mark.dickinson
Recipients georg.brandl, hagen, isandler, mark.dickinson
Date 2010-04-06.15:23:14
SpamBayes Score 5.8186047e-09
Marked as misclassified No
Message-id <1270567397.26.0.7551967059.issue5198@psf.upfronthosting.co.za>
In-reply-to
Content
The wrong location for the DeprecationWarnings was also fixed in trunk in r78690.  I've backported the fix to release26-maint in r79834.

I don't dare mess further with the warnings in a bugfix release;  as Georg points out, the issues are fixed in trunk.  BTW, one of the 2.6 issues (again fixed in trunk) that wasn't mentioned above is that some packs produce *two* overflow-related warnings:

>>> import struct
>>> struct.pack('<L', -1)
__main__:1: DeprecationWarning: struct integer overflow masking is deprecated
__main__:1: DeprecationWarning: 'L' format requires 0 <= number <= 4294967295
'\xff\xff\xff\xff'
History
Date User Action Args
2010-04-06 15:23:17mark.dickinsonsetrecipients: + mark.dickinson, georg.brandl, isandler, hagen
2010-04-06 15:23:17mark.dickinsonsetmessageid: <1270567397.26.0.7551967059.issue5198@psf.upfronthosting.co.za>
2010-04-06 15:23:14mark.dickinsonlinkissue5198 messages
2010-04-06 15:23:14mark.dickinsoncreate