Hmvp

Results 19 issues of Hmvp

Mutable module level variables might lead to bugs file: a.py ``` SOME_CONSTANT = [1,5,7] ``` file: b.py ``` from a import SOME_CONSTANT if bla: SOME_CONSTANT.remove(5) assert i in SOME_CONSTANT: ```...

I noticed that I wanted to pretty print the artefacts. Especially because sometimes the raw artefact is a bit hard to read. The code I need for that is very...

enhancement

Which makes the text "The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software." a bit weird. And thus it...

I have an enum like: ```rust #[allow(missing_debug_implementations, missing_copy_implementations, non_camel_case_types)] #[repr(C)] #[cfg_attr(test, derive(Copy, Clone, Debug))] pub enum ErrorCode { ERROR_EMPTY_LIST = 0, ERROR_VALUE_UNKNOWN = -1, ERROR_WRONG_TYPE = -2, ERROR_VALUE_INVALID = -3,...

While I suspect this is something that might be added through svd2rust I still think its useful to mention here: According to 2.1.2 from the datasheet most registers allow XORing,...

#### The problem We currently use a class (see next section) to generate random lists, with the option to override values on the items on that list. I could not...

Based on: https://github.com/benavrhm/kobs-ng-patches This patch to kobs-ng allows you to specify the ROM version explicitly using a command line parameter. For example "kobs-ng -r mx28 init ...". Using this patch...

### Is there an existing issue or pull request for this? - [x] I have searched the existing issues and pull requests ### Feature description I want to generate links...

feature/request

Should fix https://github.com/aminalaee/sqladmin/issues/509 Kind of WIP. I could not get hatch to work locally and I am not entirely sure what kind of tests to add without implementing any form...