Trim21
Trim21
`Data` does not need to be a `Mapping[str, Any]` but just object with `keys` and `__getitem__` This make it possible to use some dict-like object, for example `asyncpg.Record` without typing...
`warn` method and `fatal` method of `BoundLogger` are created with `warn = warning`, make both pycharm and vscode not automatically add `(` after auto-complete, write a real method like `def...
This is a suggestion to change default loguru text output format, or a new option to append extra to non-serialized text format. There are many structured logging will include extra...
drop python 35 and python 36 will make is possible to add inline typing, then we can commpile it with cython or mypyc.
since we are using new style format, it's possible to control how value are formatted with `__format__` current `lazy` option is not necessary, we can add a `LazyValue` type, this...
- [ ] Did you create an [Apache Jira](https://issues.apache.org/jira/projects/THRIFT/issues/) ticket? ([Request account here](https://selfserve.apache.org/jira-account.html), not required for trivial changes) - [ ] If a ticket exists: Does your pull request title...
I'm new to c++, apology if this is not a good issue. I'm coming from https://github.com/fmtlib/fmt/issues/1771 , but I'm using a `vector` as memory buffer. And `fmt::format_to(std::back_inserter(out), FMT_COMPILE("{}"), val)` works...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] I'm generating model from...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] Currently, `nix profile remove...
is it possible to generate stable struct fields ordering based on column name instead of definition order? for example, generate same result for `create table ( a int, b int...