Nikita Melentev

Results 155 comments of Nikita Melentev

@antonio-hickey No updates. It's just on contributors shoulders. I'm not interested in this mode and not ready to try to implement this, since it's PITA, definitely.

@antonio-hickey AFAIK nobody even tried. So you can be the first.

We faced this problem too. Current solution we have found is to ignore verification: ```python import asyncio import sqlalchemy as sa import ssl from sqlalchemy.ext.asyncio import create_async_engine async def main():...

@WyattBlue should I close this then?

All `LIST` outputs are for humans, they have no standard and they will be broken somehow all the time. What you can do here: - Use your own `parse_list_line_custom` routine...

If we implement types, then we need mypy on CI of course.

> I prefer pyftpdlib-style naming for FTP command process hander: `type` -> `ftp_TYPE` `list` -> `ftp_LIST` > > 1. `type` and `list` are python key-words > > 2. these functions...

>There is no easy way to achieve this. like the following problems: >https://discuss.python.org/t/improve-typing-with-to-force-not-none-value/7840/3 Just add check before using result: ```python t: T | None = f() if t is None:...

> pathio.py:446 Just add type alias for this, something like `ListType = list` at top of the file.