Mads Marquart

Results 394 comments of Mads Marquart

No need to hurry, I don't need this soon :wink:

I disagree, I think it should match `cargo build` as it does now, for consistency - otherwise I'll have to learn a `--debug` flag when I want to test my...

Not sure if this is the right place to note this, but something that confused me is how a method call reborrows, while using fully qualified syntax doesn't. [The documentation...

Yeah, could use some help, see [this comment](https://github.com/rust-lang/rust-bindgen/issues/1791#issuecomment-991182140)

If the functions are marked with `_Nonnull` / `__attribute__((nonnull))`, this could be solved in the same manner as https://github.com/rust-lang/rust-bindgen/issues/1791 could be solved

I've looked at this a bit, and would like to try implementing it, but I think I'm gonna need some help with it: From what I can tell we need...

As said, `str` is a `Sequence`, but _not_ a `List`. I'm not an expert in `typing`, but here's an example: ```py from typing import Sequence, List, Iterable sequence: Sequence[str] =...

We could copy a few ideas from [`jsonschema`](https://github.com/Julian/jsonschema), and potentially yield errors iteratively? Or maybe that's not really in scope, since `cattrs` need to return the new result. But have...

I can reproduce in `0.9.1.dev0`, the latest `master`, using a simpler example: ```py >>> import attr, cattr >>> @attr.s >>> class Model: ... a: str = attr.ib() ... >>> cattr.structure({"a":...

Since you can't easily override macros, I've wrapped them all in a block that you can then extend, the alternative would be [this](https://stackoverflow.com/a/26630528). There's also a block that you can...