Andrew Stepanov

Results 13 issues of Andrew Stepanov

This seems to be fairly easy. Curio already has [wrappers](https://curio.readthedocs.io/en/latest/reference.html#module-curio.ssl) around [ssl](https://docs.python.org/3/library/ssl.html) module in standard library. SSLContext (and, in case of HTTP/2 client, server hostname, ALPN protocol list) needs to...

enhancement
help wanted
good first issue

When message is larger than maximum we crash instead of reporting the error to the peer: ``` [2019-03-06 09:53:54,561 - root - ERROR]: Got exception in main dispatch loop Traceback...

bug

Find and evaluate remaining TODOs in the code.

We need to fix the API for 1.0 release. Unfortunately, there are going to be some breaking changes ;) Here are some of them: * stream_stream client call (and maybe...

Need to address 4 use cases: 1. Client wants to send additional request headers to server 2. Client wants to read all of the response headers or trailers 3. Server...

enhancement

gRPC has support for [timeouts](https://grpc.io/grpc/cpp/md_doc__p_r_o_t_o_c_o_l-_h_t_t_p2.html) on remote procedure calls that generate DEADLINE_EXCEEDED when they expire. This is a nice feature to have and it fits well with curio's existing [timeout...

enhancement
help wanted

There is some benchmarking code in misc/greeter directory, notably [test_perf.py](https://github.com/standy66/purerpc/blob/master/misc/greeter/test_perf.py), [run_h2load.sh](https://github.com/standy66/purerpc/blob/master/misc/greeter/run_h2load.sh), [latency_h2load.sh](https://github.com/standy66/purerpc/blob/mascer/misc/greeter/latency_h2load.sh), but it needs to be refined and independently tested with other gRPC implementations, not limited to Python. Also...

For all public interfaces and maybe even explaining internal details to show that gRPC is really a very simple protocol on top of HTTP/2

Right now purerpc uses [curio](https://github.com/dabeaz/curio) event loop, which is really pleasant to use (thx @dabeaz) but limits interoperability with other asyncio projects. Curio was chosen in 2017 mainly because of...

question

Hi! I would like to use this library for tensor manipulations in Golang. Is there any reason as to why range slices and single element slices are not exported in...