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: PrettyPrinter docs is incomplete
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: docs@python, ezio.melotti, mindrones, python-dev
Priority: normal Keywords:

Created on 2012-12-01 17:26 by mindrones, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg176745 - (view) Author: mindrones (mindrones) Date: 2012-12-01 17:26
Hi,

at http://docs.python.org/2.7/library/pprint.html#pprint.PrettyPrinter we see:
"class pprint.PrettyPrinter(...)"

while at http://docs.python.org/3.3/library/pprint.html#pprint.PrettyPrinter we see:
"class pprint.PrettyPrinter(indent=1, width=80, depth=None, stream=None)"

I think the first case is a bug.

Regards,
Luca
msg176746 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-01 17:36
New changeset 62fed5f18681 by Ezio Melotti in branch '2.7':
#16589: fix pprint signatures in the doc (backport of 106ee4eb5970).
http://hg.python.org/cpython/rev/62fed5f18681
msg176747 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2012-12-01 17:37
Fixed, thanks for the report!
History
Date User Action Args
2022-04-11 14:57:38adminsetgithub: 60793
2012-12-01 17:37:07ezio.melottisetstatus: open -> closed

type: enhancement
assignee: docs@python -> ezio.melotti

nosy: + ezio.melotti
messages: + msg176747
resolution: fixed
stage: resolved
2012-12-01 17:36:14python-devsetnosy: + python-dev
messages: + msg176746
2012-12-01 17:26:05mindronescreate