Cody Piersall

Results 10 issues of Cody Piersall

I just wanted to express thanks to NYT for releasing this data in the simplest to digest format possible. Fantastic! And sorry for the noise to everyone who is watching...

Some applications would like to be able to catch `SIGINT` to interrupt a blocking `nng_recv()` call, but if a user installs a signal handler for `SIGINT`, `nng_recv()` will never return....

feedback

On nng_pipe_notify events, it was possible for events to fire in an unexpected order: pre-connect, post-*remove*, and finally post-*connect*. This can cause errors in the wild if a resource is...

Instead of using argparse.FileType, this implements a subclass which ensures that newlines on Windows are '\n' instead of '\r\n'. flamegraph.pl cannot parse the logs generated with carriage returns, so this...

This pull request adds support for automatically building Windows wheels using [Appveyor](https://www.appveyor.com/). It builds nanomsg using the 1.0.0 tag and builds the Python extension. It works for Python 2.7-3.5, but...

I was wondering if you could upload a new release to PyPI? It would be nice to have the poll support in particular added by PR #50.

The links were indented, so they looked like code blocks instead of being inline. This makes the links be inline.

When updating CI to GitHub Actions, I noticed that Python 3.5 no longer works and builds properly. I think it's because Trio doesn't support Python 3.5 anymore. It's a shame...

I initially licensed everything as MIT because I appreciate the freedom and flexibility that it gives users. However, as of merging #52, we are now bundling the Mbed TLS library,...

Currently, there is not a good way to get a `raw` socket. It can _technically_ be done, but the API is terrible: pass the raw open function to `Socket`. I...