[issue35019] Minor Bug found in asyncio - Python 3.5.3

2018-10-19 Thread Terry J. Reedy
Change by Terry J. Reedy : -- type: behavior -> enhancement versions: +Python 3.8 -Python 3.5 ___ Python tracker ___ ___

[issue35019] Minor Bug found in asyncio - Python 3.5.3

2018-10-18 Thread Andrew Svetlov
Andrew Svetlov added the comment: I mean if we implement something like PathLike [1] but for IP addresses to socket module and teach all socket APIs to accept IPLike objects along with str -- no asyncio change is required. 1. https://docs.python.org/3/library/os.html#os.PathLike --

[issue35019] Minor Bug found in asyncio - Python 3.5.3

2018-10-18 Thread Damla Altun
Change by Damla Altun : -- keywords: +patch pull_requests: +9303 stage: -> patch review ___ Python tracker ___ ___

[issue35019] Minor Bug found in asyncio - Python 3.5.3

2018-10-18 Thread Damla Altun
Damla Altun added the comment: Working on it. -- nosy: +Damla Altun ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35019] Minor Bug found in asyncio - Python 3.5.3

2018-10-18 Thread Andrew Svetlov
Andrew Svetlov added the comment: It could be a nice feature but I imagine about adding ipaddress objects support to all python APIs. It could be done in a similar way as pathlib integration (os.fspath() and family). -- ___ Python tracker

[issue35019] Minor Bug found in asyncio - Python 3.5.3

2018-10-18 Thread Ken Bassford
New submission from Ken Bassford : Found that when using the following function ... "asyncio.start_server(self.processCmd, serverhost, serverport, loop=self.loop)" If 'serverhost' is formatted as a ipaddress.IPv4Address() it will cause a very messy failure. Formatting 'serverhost' as a