[issue10084] SSL support for asyncore

2014-06-14 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: asyncore module has been deprecated as per https://docs.python.org/3/library/asyncore.html: <> Closing this out as won't fix. -- resolution: -> wont fix status: open -> closed ___ Python tracker

[issue10084] SSL support for asyncore

2011-02-12 Thread Antoine Pitrou
Antoine Pitrou added the comment: First comments: - secure_connection() should be named ssl_something() like other methods. ssl_start() perhaps? - in ssl_shutdown(): +elif err.args[0] == ssl.SSL_ERROR_SSL: +pass SSL_ERROR_SSL doesn't exist. Perhaps you mea

[issue10084] SSL support for asyncore

2011-02-12 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Initial draft of a patch including tests and a new ssl_dispatcher subclass. asynchat needs to be changed as well, probably by using a mixin class. -- keywords: +patch Added file: http://bugs.python.org/file20752/asyncore_ssl_v1.patch ___

[issue10084] SSL support for asyncore

2010-12-01 Thread Dirkjan Ochtman
Changes by Dirkjan Ochtman : -- nosy: +djc ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue10084] SSL support for asyncore

2010-10-13 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: Problem with SSL dispatcher subclasses used in tests is that they are all similar to pyftpdlib's SSLConnection class ( http://code.google.com/p/pyftpdlib/source/browse/trunk/pyftpdlib/contrib/handlers.py?spec=svn743&r=729#73 ) and I'm not sure it's API is

[issue10084] SSL support for asyncore

2010-10-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: (I'm posting this issue after having read this message: http://mail.python.org/pipermail/python-list/2010-October/1257689.html where the poster is clearly confused about SSL support for asyncore) -- ___ Python tracke

[issue10084] SSL support for asyncore

2010-10-13 Thread Antoine Pitrou
New submission from Antoine Pitrou : It might be useful to make public the SSL support for asyncore which is currently implemented in various tests. -- assignee: giampaolo.rodola components: Library (Lib) messages: 118519 nosy: giampaolo.rodola, pitrou priority: normal severity: normal