Douglas Thor

Results 32 comments of Douglas Thor

That definitely sounds like a root cause. I've found a bit of research on the subject - looks like adding a [`__reduce__`](https://docs.python.org/3/library/pickle.html#object.__reduce__) method to the `Dot` or `Graph` classes might...

It's likely that most of these issues would be solved by #49, no? Users could simply set `docstring_sep=None` on the blueprint and then whatever they add to the function docstring...

I'm not sure if the [issue I had with GeckoDriver on Alpine](https://stackoverflow.com/q/58738920/1354930) is related at all, but I found that [I needed to also install the binaries](https://stackoverflow.com/a/58771365/1354930): `glibc-bin-2.30-r0.apk`. Perhaps installing...

This is also seen in ansible 2.9.7. ## Examples: ### --diff (without --check) does not show the diff even though the file is changed ``` $ ansible-playbook -i production windows-server.yml...

It's on my list of things to look into, but I doubt I'll be able to get around to it any time soon 😢

(For the record, the issue I'm seeing still happens with regular `pdb`, so I don't think there's anything wrong with `pdb++`)

Thanks! That's exactly what I was looking for. For those who might be trying to find the docs that mention it, check out the docstring for `pdb.py`: https://github.com/pdbpp/pdbpp/blob/b62a3381bd1db8fa3ffaa46579f477b187e2f37c/src/_pdbpp_path_hack/pdb.py#L5

For the record, the function itself https://github.com/altair-viz/altair/blob/3e60c99f1ee2b80461a40412e1e0a9689da82f1a/altair/utils/display.py#L39 is documented, but it's just not part of the [web docs](https://altair-viz.github.io/index.html), likely because the `util` package is not part of the sphinx docgen....

Thanks for the info - I figured it was intentional but I wanted to confirm. Searching for `set_embed_optoins` came about because I'm trying to set some config that can be...

@asottile How would you feel about a custom json encoder/decoder that handles floats using `decimal.Decimal`? `json.loads` also has a `parse_float` arg that might be usable instead or in addition.