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 pitrou
Recipients fdrake, pitrou
Date 2013-03-23.19:39:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364067577.46.0.261047534718.issue17530@psf.upfronthosting.co.za>
In-reply-to
Content
Same as issue #17150: 

>>> pprint.pprint({"a": b"\x00\xff" * 20})
{'a': b'\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff'}

... could be better formatted as:

>>> pprint.pprint({"a": b"\x00\xff" * 20})
{'a': b'\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00'
      b'\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff\x00\xff'
      b'\x00\xff\x00\xff\x00\xff'}
History
Date User Action Args
2013-03-23 19:39:37pitrousetrecipients: + pitrou, fdrake
2013-03-23 19:39:37pitrousetmessageid: <1364067577.46.0.261047534718.issue17530@psf.upfronthosting.co.za>
2013-03-23 19:39:37pitroulinkissue17530 messages
2013-03-23 19:39:37pitroucreate