Akuli
Akuli
You can use `\n` as the end-of-transmission byte, regardless of whether the null byte is there or not.
This too was done.
There's still `%` formatting in these files: ``` advanced/functions.md advanced/magicmethods.md basics/answers.md basics/defining-functions.md basics/exceptions.md basics/larger-program.md basics/loops.md basics/modules.md ```
This is done now. Thanks @tusharkhatriofficial for working on this!
Suppose a stub does `from foo.bar import baz`. First we find a folder named `foo/`, and this is the only step where the entire import path is needed. Then, to...
Arguably `time.monotonic()` would be better for some applications, because `datetime.now()` can go backwards. But I agree that both should be supported.
Our folder structure has changed since creating this PR. You need to make a folder `stubs/peewee`, and move `peewee.pyi` there. You also need to create a `METADATA.toml`. See `stubs/appdirs` for...
We could split this up into multiple smaller PRs by first auto-generating peewee stubs (there are instructions in CONTRIBUTING.md), and then improving them by applying individual things from this PR....
Invoking the constructors seems fragile to me. For example, if you instantiate `ast.Module`, it's easy to forget passing in a second argument and end up with a `Module` that doesn't...
`Generator[T]` isn't great, because `typing.py` in standard library of released Pythons doesn't support it at runtime, and most people don't use `from __future__ import annotations`. This means we're stuck with...