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 ssc
Recipients anandjeyahar, ezio.melotti, rhettinger, santoso.wijaya, ssc, terry.reedy
Date 2011-09-21.03:49:55
SpamBayes Score 0.0022893988
Marked as misclassified No
Message-id <1316576996.38.0.988041919325.issue13004@psf.upfronthosting.co.za>
In-reply-to
Content
@anand: as the names say, the depth parameter limits the depth of display while the length parameter limits the length.

for example, with a data structure of a list of lists of lists and a depth of 2, only the first two levels would be shown, the third list at the 'bottom' would be replaced by '...'

on the other hand, in a list with 10 entries and a length parameter of 5, only 5 list entries would be displayed.

@Raymond: agreed. i have squeezed max_len into the existing code and ported that back to 2.6 for my current project; while it works, it is a bad hack. i would much more prefer bundling efforts into an extensible pprint rewrite.
History
Date User Action Args
2011-09-21 03:49:56sscsetrecipients: + ssc, rhettinger, terry.reedy, ezio.melotti, santoso.wijaya, anandjeyahar
2011-09-21 03:49:56sscsetmessageid: <1316576996.38.0.988041919325.issue13004@psf.upfronthosting.co.za>
2011-09-21 03:49:55ssclinkissue13004 messages
2011-09-21 03:49:55ssccreate