Skip to content

Instantly share code, notes, and snippets.

@samuelcolvin
Created July 2, 2022 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samuelcolvin/639af81fe0eaa211ee05bf7f4ec46354 to your computer and use it in GitHub Desktop.
Save samuelcolvin/639af81fe0eaa211ee05bf7f4ec46354 to your computer and use it in GitHub Desktop.
➤ HYPOTHESIS_MAX_EXAMPLES=1000 pytest tests/test_hypothesis.py::test_recursive_cycles -s
Test session starts (platform: darwin, Python 3.10.5, pytest 7.1.2, pytest-sugar 0.9.4)
benchmark: 3.4.1 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=True warmup_iterations=100000)
rootdir: /Users/samuel/code/pydantic-core, configfile: pyproject.toml
plugins: benchmark-3.4.1, sugar-0.9.4, hypothesis-6.48.1, timeout-2.1.0, mock-3.8.1
timeout: 30.0s
timeout method: signal
timeout func_only: False
collecting ...
―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― test_recursive_cycles ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
recursive_schema = SchemaValidator(name="recursive-container", validator=Recursive(
RecursiveContainerValidator {
validator_id: 0,
},
))
@given(branch_models_with_cycles())
> def test_recursive_cycles(recursive_schema, data):
tests/test_hypothesis.py:83:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_hypothesis.py:76: in branch_models_with_cycles
sub_branch = draw(strategies.from_type(BranchModel) | strategies.sampled_from(existing))
env/lib/python3.10/site-packages/hypothesis/internal/conjecture/data.py:926: in draw
strategy.validate()
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:407: in validate
self.do_validate()
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:663: in do_validate
for e in self.element_strategies:
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:638: in element_strategies
if not arg.is_empty:
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:135: in accept
recur(self)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:131: in recur
mapping[strat] = getattr(strat, calculation)(recur)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:88: in calc_is_empty
return recur(self.wrapped_strategy)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:108: in wrapped_strategy
base = self.function(*self.__args, **self.__kwargs)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/core.py:175: in sampled_from
values = check_sample(elements, "sampled_from")
env/lib/python3.10/site-packages/hypothesis/internal/conjecture/utils.py:137: in check_sample
f"Cannot sample from {values!r}, not an ordered collection. "
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/collections.py:190: in __repr__
return "{}({!r}, min_size={!r}, max_size={!r})".format(
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/collections.py:322: in __repr__
return f"FixedAndOptionalKeysDictStrategy({self.required!r}, {self.optional!r})"
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:150: in __repr__
self.__representation = repr_call(
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in repr_call
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:455: in <listcomp>
bits = [nicerepr(x) for x in args]
env/lib/python3.10/site-packages/hypothesis/internal/reflection.py:448: in nicerepr
return re.sub(r"(\[)~([A-Z][a-z]*\])", r"\g<1>\g<2>", pretty(v))
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:110: in pretty
printer.pretty(obj)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:357: in pretty
return self.type_pprinters[cls](obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:612: in inner
p.pretty(obj[key])
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:372: in pretty
return _default_pprint(obj, self, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:484: in _default_pprint
_repr_pprint(obj, p, cycle)
env/lib/python3.10/site-packages/hypothesis/vendor/pretty.py:703: in _repr_pprint
output = repr(obj)
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/strategies.py:660: in __repr__
return "one_of(%s)" % ", ".join(map(repr, self.original_strategies))
env/lib/python3.10/site-packages/hypothesis/strategies/_internal/lazy.py:135: in __repr__
sig = signature(self.function)
../../.pyenv/versions/3.10.5/lib/python3.10/inspect.py:3247: in signature
return Signature.from_callable(obj, follow_wrapped=follow_wrapped,
../../.pyenv/versions/3.10.5/lib/python3.10/inspect.py:2995: in from_callable
return _signature_from_callable(obj, sigcls=cls,
../../.pyenv/versions/3.10.5/lib/python3.10/inspect.py:2456: in _signature_from_callable
return _signature_from_function(sigcls, obj,
../../.pyenv/versions/3.10.5/lib/python3.10/inspect.py:2321: in _signature_from_function
parameters.append(Parameter(name, annotation=annotation,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <[AttributeError("'Parameter' object has no attribute '_kind'") raised in repr()] Parameter object at 0x105f97980>, name = 'mapping', kind = <_ParameterKind.POSITIONAL_OR_KEYWORD: 1>
def __init__(self, name, kind, *, default=_empty, annotation=_empty):
try:
> self._kind = _ParameterKind(kind)
E RecursionError: maximum recursion depth exceeded while calling a Python object
../../.pyenv/versions/3.10.5/lib/python3.10/inspect.py:2632: RecursionError
tests/test_hypothesis.py ⨯ 100% ██████████
=================================================================================== short test summary info ===================================================================================
FAILED tests/test_hypothesis.py::test_recursive_cycles - RecursionError: maximum recursion depth exceeded while calling a Python object
Results (5.59s):
1 failed
- tests/test_hypothesis.py:82 test_recursive_cycles
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment