Samuel Colvin

Results 1016 comments of Samuel Colvin

I understand that sometimes projects become unmaintained and need to be archived. However, toml-rs/toml-rs#460 was only created 5 months ago - for a project as widely used as `toml-rs`, I...

wait, so the code is still being used here?! Well I'm pleased it's not completely forgotten. That's not clear at all from the message on https://github.com/toml-rs/toml-rs. I also think that...

I totally hear you on limited maintainers but clicking "Transfer Issue" and selecting a repo barely takes longer than closing the issue. I'm pleased th `toml-rs` codebase will still be...

Nope. It does some checks, but not full support. I'll try to check and report back here.

The problem is that according the the formal rules (and runtime behaviour), importing `private_thing` should be fine. All that `__all__` actually does is mean that `private_thing` wouldn't be imported if...

Agreed, problem is, even with that, if you put code in a private module, then re-export it through a public one, even with `__all__` set, pycharm tries to import from...

(transferred the issue to pydantic-settings) Settings management will remain, but it'll be managed as a separate repo and pypi package. --- On that issue, the idea is that you might...

We're also changing how settings works to use ["sources"](https://pydantic-docs.helpmanual.io/usage/settings/#adding-sources) for all sources in V2, so it should be easy to customise the `EnvFileSource` to make files required.

> Thank you so much and keep making Pydantic one of the best libraries of the Python ecosystem rocket Thanks so much, comments like this mean a lot.

I think this is because all env vars are converted to lower case unless you have `case_sensitive = True`. You can fix this with either: * `class Nested(BaseModel)` instead of...