You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why is repr(IsJson()) == 'IsJson(*)'? I think 'IsJson()' is a perfectly clear repr, and it follows the convention that eval(repr(x)) is equivalent to x. I also think seeing IsJson(*) in a diff would be confusing and distracting.
The text was updated successfully, but these errors were encountered:
Great, I'm doing some repr related stuff so I'll take care of that. While I'm at it, can I change repr(IsApprox(42)) to IsApprox(42) instead of IsApprox(approx=42)? The latter seems redundant.
Why is
repr(IsJson()) == 'IsJson(*)'
? I think'IsJson()'
is a perfectly clear repr, and it follows the convention thateval(repr(x))
is equivalent tox
. I also think seeingIsJson(*)
in a diff would be confusing and distracting.The text was updated successfully, but these errors were encountered: