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.

classification
Title: pprint collections classes
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: python-dev, rhettinger, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2015-04-04 17:19 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pprint_collections.patch serhiy.storchaka, 2015-04-04 17:19 review
Messages (3)
msg240084 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-04-04 17:19
Proposed patch adds support of all collections classes (except namedtuple) in pprint. It uses undocumented unstable private API. After implementing issue7434 the code could be rewritten with using public stable well-designed API. One day in the womb of time.

But for now this patch allows to grope requirements to future API.
msg240145 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2015-04-06 05:37
This seems like a reasonable intermediate step.
msg242956 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-05-12 10:36
New changeset 73c01323cb9b by Serhiy Storchaka in branch 'default':
Issue #23870: The pprint module now supports all standard collections
https://hg.python.org/cpython/rev/73c01323cb9b
History
Date User Action Args
2022-04-11 14:58:15adminsetgithub: 68058
2015-05-12 10:37:32serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2015-05-12 10:36:29python-devsetnosy: + python-dev
messages: + msg242956
2015-04-06 05:37:58rhettingersetmessages: + msg240145
2015-04-04 17:19:36serhiy.storchakacreate