hypothesis
hypothesis copied to clipboard
`st.from_type(type)` broken by 6.114.0 -- only returns `type`
Before 6.114.0
>>> [st.from_type(type).example() for _ in range(10)]
[datetime.time,
re.Match,
ExceptionGroup,
ipaddress.IPv6Interface,
str,
numbers.Integral,
numbers.Complex,
fractions.Fraction,
range,
zoneinfo.ZoneInfo]
After:
>>> [st.from_type(type).example() for _ in range(10)]
[type, type, type, type, type, type, type, type, type, type]