Lixin Yu

Results 18 comments of Lixin Yu

I have made a py3 fork & pull request here: https://github.com/mikedewar/d3py/pull/72 You may like to check it.

Generally I think it's clearer to seperate the string and binary. There're problems need to be considered though, `string/binary` are the same in serialized binary, and other language lib don't...

Sorry for the late reply, I've been totally occupied in last couple of months, I'm reviewing the code now and I'd like to include this feature in the next release....

@JennyHui may you please provide a detailed reproduce script or steps?

You're calling `create_direct_strategy` api and the traceback shows `query_grids_contain_point_result` api. It do not match. Can you try to minimize the reproduce script and post one here?

yes, and sorry for the delay. Currently the thriftpy is in a pretty stable state, it's used as a core lib in ele.me website which processed over 5 million orders...

This changed how the generated `__init__` func works. Previously: ```py def __init__(self, name='Alice', number=None): ``` now ```py def __init__(self, *args, **kwargs): ``` And the information lost.

It would be great to have an asyncio server implementation, while currently we don't have much time on new feature development, PR is very welcome!

The validate method is a simple `is not None`, and as far as I remember it's not enforced in protocol layer, you have to manually call it if you concern...

Yah generally it's a good idea to have it as an option. We've tested the `__slots__` option of Apache Thrift internally, the problem is the `__slots__` make the objects immutable,...