`pprint(..., expand=True)`'s "best effort" for adhering to `width=...` seems not very "best"
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Python
- Sterne
- 77.2k
- Forks
- 35.9k
- PR-Merge-Kennzahlen
- PR-Kennzahlen ausstehend
Beschreibung
Feature or enhancement
Proposal:
was playing around with this both for a pytest improvement and for a video -- and noticed that the width setting doesn't seem to play all that well with expand=True -- perhaps the width calculation is actually based on the old algorithm? (haven't looked closely yet)
import pprint
obj = {'a' * 12: 1, 'b' * 20: 2, 'c' * 30: {'d' * 5: 3, 'e' * 40: 3}}
pprint.pprint(obj)
print('===')
pprint.pprint(obj, expand=True)
this is the current output on an 80 character terminal (I've added newlines where natural wrapping occurs in the terminal)
$ python3.15 t.py
{'aaaaaaaaaaaa': 1,
'bbbbbbbbbbbbbbbbbbbb': 2,
'cccccccccccccccccccccccccccccc': {'ddddd': 3,
'eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee':
3}}
===
{
'aaaaaaaaaaaa': 1,
'bbbbbbbbbbbbbbbbbbbb': 2,
'cccccccccccccccccccccccccccccc': {'ddddd': 3, 'eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
eeeeeeee': 3},
}
it makes sense to me that the old format doesn't line break properly (it wouldn't fit with the 36-space (!) indent -- but I believe the new format should be able to do better -- something similar to:
{
'aaaaaaaaaaaa': 1,
'bbbbbbbbbbbbbbbbbbbb': 2,
'cccccccccccccccccccccccccccccc': {
'ddddd': 3,
'eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee': 3,
},
}
(which is well within the width=80 constraint)
Has this already been discussed elsewhere?
This is a minor feature, which does not need previous discussion elsewhere
Links to previous discussion of this feature:
I believe this is also related to #149189 -- and perhaps would strengthen the ideas in that issue if resolved
Linked PRs
- gh-155926
- gh-157684
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Beginne mit pprint.pprint(..., expand=True) und reproduziere das Beispiel des Issues bei width=80, um zu untersuchen, wie verschachtelte Mappings angeordnet werden. Erledigt ist die Aufgabe, wenn die erweiterte Ausgabe dem vorgeschlagenen verschachtelten Layout folgt, ohne unerwünschten Terminal-Zeilenumbruch und unter Einhaltung der Breitenbeschränkung.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- python
- Bereich
- tooling
- Issue-Typ
- Feature
- Schwierigkeit
- 4/5
- Geschätzter Aufwand
- 3-5 Tage
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 35/100