Tristan Seligmann
Tristan Seligmann
I think it would be nice to include this as a complement to the existing histogram out of the box, as a KDE sidesteps the issues with selecting a correct...
Our use case for this is sending logged tracebacks to Sentry; the Sentry client (raven-python) wants the exception / traceback object for serializing the stack information. A per destination flag...
certificateOptionsFromPEMs actually does two things at the moment: 1. Sifts a pile of PEM objects into key + cert + chain certs (and with #18, dhparams). 2. Turns those things...
The default value of `bui-revert-confirm` is `t`, and `:revert-confirm? nil` means "do not set the value" rather than "set it to nil".
It says: ``` :param dict headers: A dictionary of headers mapping header keys to a list of header values (sorted alphabetically) ``` While they _should_ be lists, the code actually...
So... I wrote this thing, not sure where to put it: ``` python class RequestSequence(treq_RequestSequence): @contextmanager def consume(self, sync_failure_reporter): yield if not self.consumed(): sync_failure_reporter("\n".join( ["Not all expected requests were made....
This can cause problems executing setup.py. Mantissa et al parse the version module directly instead, so we should probably do that instead.
I might be misunderstanding, but the Prometheus documentation talks about a sliding window or decay period for summary metrics; however the current implementation seems to aggregate over all time (since...
Aeson includes this instance for `Data.Time`'s `NominalDiffTime`, but `thyme` only has an instance for `UTCTime`. Would you consider adding this?
`thyme` supplies alternative `UTCTime` etc. types to the ones from `time`; it would be nice if they could be supported too.