Boar Gules
Boar Gules
I'm working on a patch. _Implementing_ the line-ending policy isn't hard. But first I have to read the configuration to discover what the policy is. I am running into `NotImplementedError`s...
According to my reference, the place to start is `core.eol`, which is almost never defined, and so raises an unavoidable `KeyError`, because the `.get()` method lacks a `default` parameter. It's...
I have a lot of lookups to do. I don't want to litter the code with `try...except` blocks.