[issue27415] BaseEventLoop.create_server does not accept port=None

2016-06-30 Thread Marcus Cobden
Marcus Cobden added the comment: I should add that port=0 is an acceptable workaround -- type: -> behavior ___ Python tracker ___

[issue27415] BaseEventLoop.create_server does not accept port=None

2016-06-29 Thread Marcus Cobden
New submission from Marcus Cobden: With the most recent 3.4 bugfix, calling create_server with port=None stopped working. This also affects 3.5, and I would imagine also 3.6, but haven't checked that. Test case: import asyncio; l = asyncio.get_event_loop();