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 serhiy.storchaka
Recipients fdrake, pitrou, serhiy.storchaka
Date 2013-10-02.16:47:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380732476.55.0.869962639026.issue19105@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a patch.

Without patch:

>>> pprint.pprint([[[[[[[[[[0, 0, 0]]*3]]]]]]]], width=21)
[[[[[[[[[[0,
          0,
          0],
         [0,
          0,
          0],
         [0,
          0,
          0]]]]]]]]]]

With patch:

>>> pprint.pprint([[[[[[[[[[0, 0, 0]]*3]]]]]]]], width=21)
[[[[[[[[[[0, 0, 0],
         [0, 0, 0],
         [0,
          0,
          0]]]]]]]]]]
History
Date User Action Args
2013-10-02 16:47:56serhiy.storchakasetrecipients: + serhiy.storchaka, fdrake, pitrou
2013-10-02 16:47:56serhiy.storchakasetmessageid: <1380732476.55.0.869962639026.issue19105@psf.upfronthosting.co.za>
2013-10-02 16:47:56serhiy.storchakalinkissue19105 messages
2013-10-02 16:47:56serhiy.storchakacreate