Christopher Armstrong

Results 40 issues of Christopher Armstrong

Hi! It'd be really helpful if there were examples of using the futures-based APIs. I'm currently trying out multiqueue in a Gotham-based webapp and when I try to use the...

About my environment: - I seem to have atom-racer configured properly, inasmuch as intelligent code completion in atom works quite well. - I'm using Windows 10, rustup-installed stable rust, msvc...

I am testing out using tk-http instead of Hyper, and I noticed I can quite easily get my code to crash with some low-level looking network error by holding down...

I haven't been able to find any obvious way to use `graphics` calls with ImageBuffers, but I may be missing some way to do it -- is it possible at...

discussion

For example, when you get a NoNodeError, all we see is `NoNodeError((), {})`, when `NoNodeError("/path/to/node")` would be much more useful. This is because exceptions are handled in a completely generic...

Enhancement

Example schema: ```python >>> v = cerberus.Validator({ ... 'x': { ... 'nullable': True, ... 'oneof': [{'type': 'string'}, {'type': 'number'}]}}) # As expected: >>> v.validate({'x': 'foo'}) True >>> v.validate({'x': 52}) True...

feature request

It seems quite common that when GHC stops with SIGKILL (exit code -9), it's because the process was killed by an OOM killer. It would be nice if Cabal could...

type: enhancement
re: error-message

- [ ] delays between retries: - [ ] constant - [ ] exponential - [ ] randomized modifier - [ ] maximum number of retries - [ ] super...

enhancement
help wanted

Similar to https://twistedmatrix.com/trac/ticket/6538 , which is for tracing callback history on Deferreds, I think we should have this feature for Effects. I _hope_ that it will be easier for Effects....

enhancement

It would be nice to have an analog of [DeferredSemaphore](http://twistedmatrix.com/documents/current/api/twisted.internet.defer.DeferredSemaphore.html) and/or [DeferredLock](http://twistedmatrix.com/documents/current/api/twisted.internet.defer.DeferredLock.html). This could then be used to implement #8.