synodriver

Results 125 comments of synodriver

As far as I can see, this is caused by the number which is bigger than ```long long```'s range in C, remove the ```long long``` in cpdef should work cause...

By changing this function ``` cpdef escape_int(long long value, mapping=None): return str(value) ``` to ``` cpdef escape_int(object value, mapping=None): return str(value) ```

It might works, however, this may lead to a performance degradation due to the price that interact with PyObject.

I also encountered this problem on windows when I tried to wrap this into a [python module](https://github.com/synodriver/python-bz3). It said ```can not open "pthread.h": No such file or directory```. It only...

> That is because I want to provide the same interface as the builtin bz2 module, but just found some problem. Maybe some changes is necessary. By the way, it's...

Thank you for your pr! Now [hypercorn](https://gitlab.com/synodriver/hypercorn/-/tree/zerocopy) supports zerocopysend too.

This may be an asgi extension, I think. By the way, can we use a uniform name for it?You have just named it ```http.response.trailers```, but mine is [```http.trailingheaders.send```](https://github.com/nonebot/nonecorn/blob/nonecorn_dev/src/hypercorn/protocol/http_stream.py#L232). ~~Maybe your's...

Mine situation is more strange, the validators are not runing at all! Maybe it's related to this, but after I tried @[AndrewRiggs-Atkins](https://github.com/AndrewRiggs-Atkins)'s patch they still not working. Here is my...

这个理论上可以有