Kaleb Barrett
Kaleb Barrett
I would like to be able to turn off the linting on Python files with the extension `.pyi`. Python typing stubs are not subject to PEP8. typeshed style, which is...
Spent a good hour on this until I realized that maybe everyone was running `coverage xml` for a reason. It is only implied and never out-right mentioned in the README.
I will use this issue to keep track of the status of my efforts to add cocotb support to VUnit and receive suggestions and feedback. I am new to VUnit...
Bug type: Language Service **Describe the bug** - OS and Version: Ubuntu 2021.10 - VS Code Version: 1.65.2 - C/C++ Extension Version: v1.9.2 - Other extensions you installed (and if...
Improve documentation for decisions around certain `list`, `dict`, `Mapping`, and `Sequence` methods
[`list.index`](https://github.com/python/typeshed/blob/35064a7f759facd7c3787ab6095964008f97d873/stdlib/builtins.pyi#L797) and [`list.count`](https://github.com/python/typeshed/blob/35064a7f759facd7c3787ab6095964008f97d873/stdlib/builtins.pyi#L798) currently only accepts values of the element type and [`Sequence.index`](https://github.com/python/typeshed/blob/35064a7f759facd7c3787ab6095964008f97d873/stdlib/typing.pyi#L328) and [`Sequence.count`](https://github.com/python/typeshed/blob/35064a7f759facd7c3787ab6095964008f97d873/stdlib/typing.pyi#L329) use `Any` for the type of the argument. In my opinion all of these functions...
From [here](https://github.com/ktbarrett/find_libpython/pull/13/checks?check_run_id=2221834708#step:3:10). I am specifying `miniconda-version` and still get errors. The following line is to blame (I think, I don't know JS), it seems that it should check if miniconda-version...
`cocotb.start` is intended to run the given coroutine and block until it has started. Right now it's literally just `cocotb.start_soon` followed by `await NullTrigger()`. The behavior of `cocotb.start` is not...
Addresses #3005. Justing testing now, not sure how to approach fixing it.
## Description Debugging with GDB of the VPI with GHDL shows that trying to index into a 1-D array object using `vpi_handle_by_index(array_handle, index)` does not work. Getting the full name...
We have noticed for some time now that every so often we get messages like the one below. They always occurred when using `First` on multiple `Trigger`s. ``` 10.00ns CRITICAL...