Dylan Baker
Dylan Baker
## Python Code ```python def func(a: object, b: object) -> bool: return type(a) is type(b) # noqa ``` ## Command Line and Configuration pyproject.toml ```toml [tool.autopep8] max_line_length = 120 in-place...
After looking at the asyncio branch a bit, I realized that the way the search buffers load threads is making the staggered loading problem worse. This is caused by the...
meson is a build system generator similar to cmake or autotools, but without the craziness of either of those languages. It provides a pleasant scripting language that is inspired by...
mostly this just changes the pic calculation to reuse the one already done in the StaticLibrary initializer, but there's also a bit of code-reuse going on here as well. This...
We're currently trying to call the method `.log_tried()` on a function, which is invalid. Mypy even helpfully points this out, except that we don't yet run mypy on this file...
This is the first set of patches pulled out of my giant build refactor series, specifically those for the interpreter level. This series doesn't help the build layer too much...
mlog uses a lot of global state, which it needs to mutate. This leaves a lot to be desired, especially since we provide some getter/setters for this state, and some...
Allows passing `dependency` objects to the `rust.bindgen` method. This is useful when the header you're generating bindings for includes system headers, and needs to pass include flags to clang from...
This is still *very* WIP, but I wanted to be able to track the status of it publically, since I'm trying to get this ready to solve real issues in...
### Discussed in https://github.com/mesonbuild/meson/discussions/11120 Originally posted by **LunarLambda** November 30, 2022 Project A can be cross-compiled (it's a library for command-line parsing), so does not specify `native: true`. Project B...