[issue7434] general pprint rewrite

2016-12-14 Thread Andreas Stenberg
Changes by Andreas Stenberg : -- nosy: +astenberg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue7434] general pprint rewrite

2016-12-14 Thread Louis Riviere
Louis Riviere added the comment: I've made a Pretty Printer and I'd like to know if anybody thinks it could of some help here. (I do) It's easily extensible and customizable to support any type in any way. https://github.com/louis-riviere-xyz/prettypy.git -- nosy: +dugres __

[issue7434] general pprint rewrite

2016-12-13 Thread Frazer McLean
Changes by Frazer McLean : -- nosy: +RazerM ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue7434] general pprint rewrite

2015-02-03 Thread Fred L. Drake, Jr.
Changes by Fred L. Drake, Jr. : -- nosy: -fdrake ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue7434] general pprint rewrite

2015-02-01 Thread Zeke
Changes by Zeke : -- nosy: +Ezekiel.Fairfax ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue7434] general pprint rewrite

2014-09-19 Thread Edward O
Changes by Edward O : -- nosy: +eddygeek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue7434] general pprint rewrite

2014-05-21 Thread akira
akira added the comment: Related issue #21542: pprint support for multiline collections.Counter -- nosy: +akira ___ Python tracker ___

[issue7434] general pprint rewrite

2014-01-04 Thread Ezio Melotti
Changes by Ezio Melotti : -- keywords: -easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue7434] general pprint rewrite

2014-01-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, so why did Roundup add the easy keyword and doesn't want to remove it? -- ___ Python tracker ___

[issue7434] general pprint rewrite

2014-01-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Oops... no, it's not easy. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7434] general pprint rewrite

2014-01-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Ideally, we'd also have a standard lazy import mechanism in 3.5, so these > definitions could go in the collections module, but only installed if pprint > was also imported. That sounds more like an on-import hook than a lazy import mechanism, no? -

[issue7434] general pprint rewrite

2014-01-04 Thread Nick Coghlan
Nick Coghlan added the comment: With PEP 443 added for Python 3.4, I believe Łukasz intended to pursue a new pprint implementation based on functools.singledispatch. That has obviously missed feature freeze for Python 3.4, but it's still a reasonable idea to pursue for 3.5. In addition to Ord

[issue7434] general pprint rewrite

2013-11-17 Thread Evgeny Kapun
Changes by Evgeny Kapun : -- nosy: +abacabadabacaba ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue7434] general pprint rewrite

2013-10-01 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue7434] general pprint rewrite

2013-07-11 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: rhettinger -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue7434] general pprint rewrite

2013-06-25 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue7434] general pprint rewrite

2013-05-21 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue7434] general pprint rewrite

2013-05-21 Thread Łukasz Langa
Changes by Łukasz Langa : -- Removed message: http://bugs.python.org/msg138819 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue7434] general pprint rewrite

2013-05-21 Thread Łukasz Langa
Łukasz Langa added the comment: For the record, my class-based approach from 2010 still available here: https://bitbucket.org/ambv/nattyprint -- versions: +Python 3.4 -Python 3.3 ___ Python tracker

[issue7434] general pprint rewrite

2013-01-05 Thread Danilo Bargen
Changes by Danilo Bargen : -- nosy: +gwrtheyrn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue7434] general pprint rewrite

2011-12-15 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue7434] general pprint rewrite

2011-09-20 Thread Steven Samuel Cole
Changes by Steven Samuel Cole : -- nosy: +ssc ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue7434] general pprint rewrite

2011-09-19 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- nosy: +santa4nt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue7434] general pprint rewrite

2011-06-22 Thread Łukasz Langa
Łukasz Langa added the comment: Mine still lies here: https://bitbucket.org/langacore/nattyprint -- ___ Python tracker ___ ___ Python

[issue7434] general pprint rewrite

2011-06-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: Link to Armin's work on a pprint improvement based on a Ruby pprint tool: https://github.com/mitsuhiko/prettyprint -- ___ Python tracker __

[issue7434] general pprint rewrite

2011-06-22 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- nosy: +aronacher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue7434] general pprint rewrite

2010-11-30 Thread Raymond Hettinger
Raymond Hettinger added the comment: Attaching a rough concept of how to make the existing pprint module extendible without doing a total rewrite. The actual handler is currently bogus (no thought out), so focus on the @guard decorator and the technique for scanning for handlers. --

[issue7434] general pprint rewrite

2010-11-21 Thread Raymond Hettinger
Raymond Hettinger added the comment: Deferring the general rewrite until 3.3. It would need to have a lot of people look at it and evaluate it. I no longer think there is time for that before the 3.2 beta. -- resolution: -> later versions: +Python 3.3 -Python 3.2

[issue7434] general pprint rewrite

2010-11-11 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +belopolsky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue7434] general pprint rewrite

2010-11-11 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue7434] general pprint rewrite

2010-11-05 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue7434] general pprint rewrite

2010-10-13 Thread Łukasz Langa
Łukasz Langa added the comment: I would like to work on that. Expect a patch soon. Georg, Fred, I've added you to nosy because you're the ones watching over me currently. Bare with me :) -- nosy: +fdrake, georg.brandl, lukasz.langa title: pprint doesn't know how to print a namedtuple