Shorten ListRemainder's repr() when possible.

This commit is contained in:
2022-03-05 09:53:24 +01:00
committed by Val Lorentz
parent 2a4e71eccd
commit 8356ace014
2 changed files with 4 additions and 2 deletions

View File

@ -81,6 +81,8 @@ class ListRemainder:
def __repr__(self) -> str:
if self.min_length:
return f"ListRemainder({self.item!r}, min_length={self.min_length})"
elif self.item is ANYSTR:
return "*ANYLIST"
else:
return f"ListRemainder({self.item!r})"

View File

@ -223,8 +223,8 @@ MESSAGE_SPECS: List[Tuple[Dict, List[str], List[str], List[str]]] = [
],
# and they each error with:
[
"expected params to match ['nick', 'FOO=1', ListRemainder(ANYSTR)], got ['nick']",
"expected params to match ['nick', 'FOO=1', ListRemainder(ANYSTR)], got ['nick', 'BAR=2']",
"expected params to match ['nick', 'FOO=1', *ANYLIST], got ['nick']",
"expected params to match ['nick', 'FOO=1', *ANYLIST], got ['nick', 'BAR=2']",
]
),
(