Gavin Kistner
Gavin Kistner
Separate from the algorithm effects of this pull request (which I have not yet reviewed) I will not accept a pull request that massively changes the formatting of existing lines.
Thanks for the report. Looks like adaptive subsampling algorithm I reused uses recursion and for some reason dove too deep on a particular path. The `tolerance` might need to be...
Confirmed. Thanks for the report!
Likely the same problem this prevents me from creating `select a value`: ```python to_xml(Option("select a value", value="")) #=> "select a value" ``` At least with `0` we have the workaround...
Tip! `(0 in (False)) == True` I think `if v not in (False, None, '') and …` needs to become: ```python if v is not False and v is not...
I don't want a default title for the whole app, but I do want a way to set the from the `body_wrap`. This does not do what one might hope:...
Incorporating uncertainties into estimating is far underused in the business world, too frequently entering guesses into Excel and getting magic number out the other end and believing it. On the...
In case it helps, I derived this hook order (which I think is correct) for the importer. I personally would have found something like this helpful for both import and...
I spent a few hours tracing the export hooks in order. This might be roughly correct: ``` gather_asset_hook for each scene: vtree_before_filter_hook gather_tree_filter_tag_hook vtree_after_filter_hook for each node: if it is...
_Possibly relevant: this error might have only started cropping up when using `attrs` heavily for some classes._