-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
ENH: Print object arrays containing lists unambiguously #8989
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
+1 from me. Code LGTM. |
353d537
to
463a5a2
Compare
Updated with a release note, that also includes an entry about #8963, since they're related |
463a5a2
to
6f841d3
Compare
@@ -256,6 +264,7 @@ def _get_formatdict(data, precision, suppress_small, formatter): | |||
'longcomplexfloat': lambda: LongComplexFormat(precision), | |||
'datetime': lambda: DatetimeFormat(data), | |||
'timedelta': lambda: TimedeltaFormat(data), | |||
'object': lambda: _object_format, | |||
'numpystr': lambda: repr_format, | |||
'str': lambda: str} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting fact - this is never nor was ever used...
☔ The latest upstream changes (presumably #8967) made this pull request unmergeable. Please resolve the merge conflicts. |
Also adds a release note for numpygh-8963
Adding to the milestone since this contains a release note fix for an already-included feature |
Thanks Eric. |
Previously
Now