Samuel Colvin
Samuel Colvin
Pretty sure you can do urls with scheme, and path, but no host - e.g. file URIs.
What do you mean by "error aggregation"? I didn't think we're trying to move anywhere with errors specifically, just allow people do to what want. If you can give some...
Yeah, that's fundamentally against how pydantic works, and has always worked. I think your work around is the best solution.
Some initial benchmarks indicate this isn't a major issue, although it could lead to memory growth as per https://github.com/python/cpython/issues/92810. We should look at this before releasing v2.
Probably not, I've tried and this isn't making a big difference to performance. Honestly their probably aren't that many good issues if you want to learn rust right now I'm...
you could try looking at https://github.com/pydantic/pydantic-core/pull/584, copy that code and create a new PR?
What's the reason you need to build with older rust?
@davidhewitt what about using ```rust unsafe { py.new_pool() }; ``` At the start of every validation?
Let's revisit this once #1085 gets merged which might improve performance significantly.
> What do you think of using or having something like: https://github.com/Keats/validator for pydantic? It includes email and credit card and some others Not really required, we have our own...