Kuba Sunderland-Ober
Kuba Sunderland-Ober
It'd be nice if C++ support was also available. I was specifically thinking of supporting Arduino libraries from Typescript, and those are all C++. I was going to take a...
Suppose we have: ``` T = TypeVar('T') Element = tuple[T] def fn(elements: tuple[Element, ...]): ... ``` The problem is that `T` is forced to be the same for every element,...
0.5.2 broke references that were meant to be names (e.g. command names) and replaced them with `Section n.n.n`. How to restore old behavior? The changelog is very vague: > docutils/Sphinx...
This is to keep to keep the CI configuration nanes uniform. See https://www.appveyor.com/docs/build-configuration/#yaml-file-alternative-naming
The capnproto compiler itself has no problem handling circular dependencies. The C++ codegen has no problem as long as the schema is in a single file, and the types are...
The Resizer implements a virtual functor. As such, it must include a virtual destructor. In C++11 code, instead of a Resizer one should use `std::function`.
In `b.c`, there's a solitary `ungetc` invoked in a loop, at https://github.com/onetrueawk/awk/blob/master/b.c#L935 In standard C, ungetc is only guaranteed to work once without an intervening seek or read. And thus,...
My use case is *not* module development, but having a (currently) CPython interpreter embedded in the application. I'm using HPy so that in distant future a different Python implementation could...
I'm working on a proof-of-concept for using HPy as a Python API inside of the open-source Electronic Design Automation (EDA) project KiCad. KiCad embeds Python, and uses it to allow...