Castedo Ellerman
Castedo Ellerman
Parsing the "allowed signers" file format is needed for SSH signature verification: #1394. This issue it so track a new function in the dulwich library for parsing "allowed signers" files...
* check_signature method for Commit/Tag as alternative to verify * SignatureCriterion interface to decouple crypto from git serialization * single simple InvalidSignature exception generic to whatever criterion * DRY re-impl...
https://github.com/sergiocorreia/panflute/blob/f99f82d62b245abb7f29e2d2d3bb560099d12cb8/panflute/base.py#L225 The action function: * parameter takes `[Element, Doc]` as arguments not `[Element, Element]` * returns an `Element`, typing `Any` isn't very useful The doc parameter take a `Doc` not...
Here's another corner case uncovered by adding type hints and doing type checking. `MetaList` inherits from the abstract base class `MutableSequence` in the standard library. Thus `mypy` flags that the...
This is an example of what I would call a headache caused by adding type hints to an existing untyped library. 😅 It's probably fine to ignore this issue because...