failed WRONG_FIX UNSUBMITTED wrong_fix_unsubmitted(None) · None tool calls · 0 s · Textualize/rich
(not found in data/tasks.jsonl)
| # | Tool | Arguments | Result |
|---|---|---|---|
| No trace captured. | |||
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Parse ANSI escape sequences in pretty repr https://github.com/Textualize/rich/pull/2470
- Add support for `FORCE_COLOR` env var https://github.com/Textualize/rich/pull/2449
+- Allow a `max_depth` argument to be passed to the `install()` hook https://github.com/Textualize/rich/issues/2486
### Fixed
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -27,6 +27,7 @@ The following people have contributed to the development of Rich:
- [Will McGugan](https://github.com/willmcgugan)
- [Paul McGuire](https://github.com/ptmcg)
- [Antony Milne](https://github.com/AntonyMilneQB)
+- [Michael Milton](https://github.com/multimeric)
- [Nathan Page](https://github.com/nathanrpage97)
- [Avi Perl](https://github.com/avi-perl)
- [Laurent Peuch](https://github.com/psycojoker)
--- a/rich/pretty.py
+++ b/rich/pretty.py
@@ -120,6 +120,7 @@ def _ipy_display_hook(
indent_guides: bool = False,
max_length: Optional[int] = None,
max_string: Optional[int] = None,
+ max_depth: Optional[int] = None,
expand_all: bool = False,
) -> None:
# needed here to prevent circular import:
@@ -177,6 +178,7 @@ def _ipy_display_hook(
indent_guides=indent_guides,
max_length=max_length,
max_string=max_string,
+ max_depth=max_depth,
expand_all=expand_all,
margin=12,
),
@@ -202,6 +204,7 @@ def install(
indent_guides: bool = False,
max_length: Optional[int] = None,
max_string: Optional[int] = None,
+ max_depth: Optional[int] = None,
expand_all: bool = False,
) -> None:
"""Install automatic pretty printing in the Python REPL.
@@ -214,6 +217,7 @@ def install(
max_length (int, optional): Maximum length of containers before abbreviating, or None for no abbreviation.
Defaults to None.
max_string (int, optional): Maximum length of string before truncating, or None to disable. Defaults to None.
+ max_depth (int, optional): Maximum depth of nested data structures, or None for no maximum. Defaults to None.
expand_all (bool, optional): Expand all containers. Defaults to False.
max_frames (int): Maximum number of frames to show in a traceback, 0 for no maximum. Defaults to 100.
"""
@@ -236,6 +240,7 @@ def install(
indent_guides=indent_guides,
max_length=max_length,
max_string=max_string,
+ max_depth=max_depth,
expand_all=expand_all,
),
crop=crop,
@@ -258,6 +263,7 @@ def install(
indent_guides=indent_guides,
max_length=max_length,
max_string=max_string,
+ max_depth=max_depth,
expand_all=expand_all,
)
else:
.F
=================================== FAILURES ===================================
____________________________ test_install_max_depth ____________________________
def test_install_max_depth():
console = Console(file=io.StringIO())
dh = sys.displayhook
install(console, max_depth=1)
sys.displayhook({"foo": {"bar": True}})
> assert console.file.getvalue() == "{'foo': ...}\n"
E assert "{'foo': {...}}\n" == "{'foo': ...}\n"
E
E - {'foo': ...}
E + {'foo': {...}}
E ? + +
tests/test_pretty.py:59: AssertionError
!!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 1 failures !!!!!!!!!!!!!!!!!!!!!!!!!!!
1 failed, 1 passed in 0.15s