Richie Steigerwald

Results 2 issues of Richie Steigerwald

_FullStatsObservation specifies `-9223372036854775808` as the maximum value for several observations. That is because np.inf is a float but it is being cast to an int. ```python >>> np.array(np.inf).astype(int) array(-9223372036854775808) ```...

enhancement

Here's a reproduction of the issue: ```python builder_1 = genson.SchemaBuilder() builder_1.add_object({"a": 0}) builder_1.add_object({"b": 0}) # Make a copy of builder_1. builder_2 = genson.SchemaBuilder() builder_2.add_schema(builder_1) # This passes. assert builder_1.to_schema() ==...

bug
wontfix