AN Long
AN Long
Hi, I took a look at Memcache's protocol. Both its ASCII protocol[^1] and binary protocol[^2] require a 32-bit length for the expiration time. So, I think we should wait until...
Thank you for your reply! > The [binary](https://github.com/memcached/memcached/wiki/Protocols) protocol has officially ceased to exist and its presence in new versions of your client will only be a suffering. For example,...
> I might be missing something. I opened the protocol and saw the only authentication method is through [Sasl](https://github.com/memcached/memcached/blob/5609673ed29db98a377749fab469fe80777de8fd/doc/protocol.txt#L186) There are no others. The link you mentioned here is not...
Since we are using poetry instead of setuptools, `setup.py` should not be added. We should done this in pyproject.toml with environment markers: https://python-poetry.org/docs/dependency-specification/
I dug into the `test_os` failure and found that the underlying file object created for `os.fdopen` depends on the *fd*'s type: https://github.com/python/cpython/blob/b8d808ddd77f84de9f93adcc2aede2879eb5241e/Modules/_io/_iomodule.c#L323-L329 On the GHA, stdin and stdout (fileno 0...
The `test_venv.test_prefixes` test failed because `python.bat` set the `PYTHONHOME` variable like this: ```bat @set PYTHONHOME=C:\Users\xxxxx\Source\cpython\ ``` The Python runtime will use this as `sys.base_prefix`. However, it has a trailing slash,...
```python-traceback Traceback (most recent call last): File "f:\dev\3x\Lib\multiprocessing\process.py", line 314, in _bootstrap self.run() ~~~~~~~~^^ File "f:\dev\3x\Lib\multiprocessing\process.py", line 108, in run self._target(*self._args, **self._kwargs) ~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "f:\dev\3x\Lib\test\_test_venv_multiprocessing.py", line 10, in drain_queue if...
The three failed test cases mentioned in the original issue in `test_os` and `test_venv` have already been fixed. Additionally, there are some warning logs like: ``` minkernal\crts\ucrt\src\appcrt\lowio\isatty.cpp Assertion failed (fh>=0...
Thriftpy2 supports using HTTP as a transport, just like Apache Thrift. However, the aio version of Thriftpy2 has not yet implemented HTTP transport. Contributions are welcome!
Hi, after #128, the screen text should not be trancated now. And that change is contained in `v2.4.0b1`. Thank you for report!