This repository was archived by the owner on Nov 23, 2017. It is now read-only.

Description
loop.create_unix_server() should remove socket at that path if it exists. Every application that wants to use unix socket server should do that. Why not to add code that removes unix socket before binding ?
It should:
- Check if it is exists and that is UNIX socket (i.e. do
os.stat())
- raise exception if removal failed, raise exception if this path exists but is not unix socket.
- not even try to remove if path starts with zero byte (i.e. abstract unix socket)