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 dcoles
Recipients dcoles, dmalcolm, doko, pitrou
Date 2013-10-21.07:26:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382340382.3.0.936392492054.issue19308@psf.upfronthosting.co.za>
In-reply-to
Content
And here's the patch for Python 2.7.

The result of testing is as follows:
- python (default) against py2-linked gdb: All tests pass
- python (2.7) against py2-linked gdb: `test_long` fails.
- python (default) against py3-linked gdb: All tests pass
- python (2.7) against py3-linked gdb: `test_long`, `test_strings` and `test_unicode` fail.

`test_long` has been removed from the default branch, in addition gdb doesn't seem to distinguish printing 0 from 0L. `test_strings` likely fails since Python 3 will print printable unicode characters (like "\xff") while Python 2 will not. `test_unicode` likely fails due to the 'u' prefix on unicode strings in Python 2. This kind of behavior is pretty much expected when cross-testing gdb.
History
Date User Action Args
2013-10-21 07:26:22dcolessetrecipients: + dcoles, doko, pitrou, dmalcolm
2013-10-21 07:26:22dcolessetmessageid: <1382340382.3.0.936392492054.issue19308@psf.upfronthosting.co.za>
2013-10-21 07:26:22dcoleslinkissue19308 messages
2013-10-21 07:26:22dcolescreate