Tzu Gwo
Tzu Gwo
### Please make guru timeout configurable The timeout settings is hard coded in `lib/implements/implements.js:57`, please make it configurable.
I find #246 this issue so I wrote an asyncio support for thriftpy, and it can pass all the original test cases. Now you can use thriftpy like this: ```python...
relay to #139, a quick verification: ```python from thriftpy2.transport.memory import TCyMemoryBuffer from thriftpy2.protocol import cybin as proto from thriftpy2.thrift import TType b1 = TCyMemoryBuffer() proto.write_val(b1, TType.MAP, {"hello": "1"}, spec=(TType.STRING, TType.STRING))...
```python class FooBar(pygraphy.Union): members = (Foo, Bar) ``` is not clearer than ```python FooBar = typing.Union[Foo, Bar] ```
## Proposal In current, remote storage hard-coding uses PB over HTTP as protocol, it is the most convenient situation in kinds of usage case. However, I think it does not...
Like `import alias "github.com/some/pkg"`, seems like parser.ParseFile can not process an alias import.
Does not below two ways equal? ``` python class Foo(object): def __enter__(self): print "hello, world" def __exit__(self, type, value, tb): print "bye" with Foo() as foo: pass mgr = Foo()...
Got compiling error on below code: ```rust pub fn chained_stream() -> impl Stream { #[stream] async { yield 1; } .map(|d| d * 2) } ``` ``` error: unexpected token...