Cycloctane
Cycloctane
It seems that this issue also exists in aiomysql (https://github.com/aio-libs/aiomysql/pull/987), and haven't been fixed yet.
asyncmy cannot handle zero dates properly. ```python import asyncio import asyncmy async def main(): conn = await asyncmy.connect(...) async with conn.cursor() as cur: await cur.execute("SELECT * FROM asyncmy WHERE id=1")...
> Thanks! Could you make a PR to fix that? @long2ice I've changed return type of `convert_datetime()`, `convert_timedelta()`, `convert_time()` and `convert_date()` to `object` so that `str` can be accepted as...
> strangely i get the packet sequence wrong with `select * from (select ....) anon` queries with real dates in it. want to debug first before making a post. >...
@ZM25XC UTF-8 is not accepted in headers. You can only use ISO-8859-1 in HTTP headers according to rfc. If you want to put utf8 characters in the url and pass...
There is a breaking change in ssl config. httpx 0.27.2 uses a custom cipher suites config from urllib3 1.x, while httpx 0.28.0 is using default ciphers from `ssl.create_default_context()`. Some cipher...
Can not reproduce it. ``` root@f1a487c98ac6:/# python3 ./test.py [aiohttp] Status Code: 200 ``` *edit*: I noticed that you mentioned using python 3.12 with windows 7. As far as i know...