[issue11177] Set asyncore create_socket default argument

2011-02-25 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Fixed in r88619. -- nosy: +josiah.carlson resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue11177] Set asyncore create_socket default argument

2011-02-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: Your "versionchanged" is misleading. It should be something like "family and type can now be omitted". -- components: +Library (Lib) nosy: +pitrou stage: -> patch review type: -> feature request ___ Python tracker

[issue11177] Set asyncore create_socket default argument

2011-02-10 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- assignee: -> giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11177] Set asyncore create_socket default argument

2011-02-10 Thread Giampaolo Rodola'
New submission from Giampaolo Rodola' : At the current state asyncore implicitly supports TCP (SOCK_STREAM) sockets only, despite UDP support might be added in the future. For simplicity, create_socket() should assume TCP/IP by default. This would avoid the user to "import socket" and specify th