Victor M. Alvarez
Victor M. Alvarez
The previous comment went unnoticed to me, so I didn't respond earlier, but the answer from @HoundThe is exactly what I meant.
I don't quite understand the issue. Is that the event loop used by `vt-py` is being closed at some other place?
I'm not sure about that. When you are using `vt-py` in async mode (i.e: using exclusively async functions from the library) the event loop is something external to the library,...
I'm ok with adding protective measures if that helps, but I don't know what type of protective measures we can add. Do you have some specific measure in mind?
Interesting. The downside is that we'll end up having different implementations, and that will be very confusing for people already familiar with totalhash/Viper's one. It's a shame they didn't get...
I find a bit weird that this is included in the `math` module. Maybe it's time for a `string` module?
I'm experiencing the same issue with error messages. The message always seems to report the top level rule, even if part of the rule is matched correctly and the actual...
Looks good to me. The only thing I miss is adding `.. versionadded:: 4.3.0` to the new fields in the documentation.
Should be fixed in 833a580430abe0fbc9bc17a21fb95bf36dacf367
With `StringIO` the error is expected because `StringIO` shouldn't be used with binary data. However, with `BytesIO` it should work, and there's even a test case for that. Can you...