David Butler

Results 5 issues of David Butler

Im getting this randomly.... having trouble tying it down to a cause, but I figured I'd post here to see if anyone knew of any possible causes ``` Traceback (most...

bug

I find my self doing this: ``` class CustomUDPLogstashHandler(logstash.UDPLogstashHandler): def __init__(self, *a, **kw): self.global_extras = kw.pop('global_extras', {}) super().__init__(*a, **kw) def emit(self, record): for key, value in self.global_extras.items(): setattr(record, key, value)...

I use PyCharm, and I have hacked together this bit of code: ``` # This will activate an attached PyCharm or PyDev debugger on a django 500 # error #...

``` type NamedType int func main() { err := godump.Dump(NamedType(0)) if err != nil { panic(err) } } ```