Opened 19 years ago
Closed 19 years ago
#3964 closed (fixed)
SortedDict string representation not in order of keys
| Reported by: | Owned by: | Jacob | |
|---|---|---|---|
| Component: | Uncategorized | Version: | dev |
| Severity: | Keywords: | SortedDict __repr__ repr | |
| Cc: | Triage Stage: | Ready for checkin | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | yes | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
This is more-or-less a problem with Python's dict implementation, IMO. It's
really nothing more than a convenience thing, but for SortedDict, repr(d)
doesn't indicate the proper key order. It seems that the standard dict.repr
does not iterate over the dict like I would expect it to.
Attached is a patch that re-implements repr using an iterator over the
object. Thus, SortedDict's are displayed properly in the Python shell.
Attachments (1)
Change History (4)
by , 19 years ago
| Attachment: | SortedDict__repr__.diff added |
|---|
comment:1 by , 19 years ago
| Triage Stage: | Unreviewed → Ready for checkin |
|---|
comment:2 by , 19 years ago
| Needs tests: | set |
|---|
comment:3 by , 19 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
(In [5069]) Fixed #3964 -- Added a custom SortedDict.repr so that the keys are printed
in sorted order. Based on a patch from Forest Bond.
patch implementing SortedDict.repr