Thanks to visit codestin.com
Credit goes to github.com

Skip to content

pprint with compact indent #112632

Open
Open
@hyzyla

Description

@hyzyla

Feature or enhancement

Proposal:

Add a new parameter to the pprint function that inserts a newline character (\n) after the opening parenthesis, and sets the indent to level * indent. With this parameter, pprint will format nested objects in a manner similar to how formatters like Black or Ruff format them.

>>> t = {'a':2, 'b':{'x':3, 'y':{'t1': 4, 't2':5}}}
>>> pprint(t, indent=4, some_parameter=True)
{
    "a": 2,
    "b": {
        "x": 3,
        "y": {
            "t1": 4,
            "t2": 5
        }
    }
}

With this change, pprint will print in a more width-compact manner, making it easier to read and copy-page pretty printed object to codebase wich follows similar formmating rule.

This feature was hevily inspired by this question on Stackoverflow

Has this already been discussed elsewhere?

No response given

Links to previous discussion of this feature:

No response

Linked PRs

Metadata

Metadata

Assignees

No one assigned

    Labels

    stdlibPython modules in the Lib dirtype-featureA feature request or enhancement

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions