[issue9075] ssl module sets "debug" flag on SSL struct

2010-06-29 Thread Sridhar Ratnakumar
Changes by Sridhar Ratnakumar : -- nosy: +srid ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue9075] ssl module sets "debug" flag on SSL struct

2010-06-24 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks! Committed in r82210 (trunk), r82211 (py3k), r82212 (2.6), r82213 (3.1). -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue9075] ssl module sets "debug" flag on SSL struct

2010-06-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: Let it die. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue9075] ssl module sets "debug" flag on SSL struct

2010-06-24 Thread Antoine Pitrou
Antoine Pitrou added the comment: Actually, looking at the history of the SVN repo, this dates back to 1999 when the first SSL support was incorporated by Guido based on third-party patches, and no trace of a review discussion can be found. The only thing we can do is assume it's useless (and

[issue9075] ssl module sets "debug" flag on SSL struct

2010-06-24 Thread Antoine Pitrou
New submission from Antoine Pitrou : The ssl module sets a "debug" flag on the OpenSSL SSL struct at the end of PySSL_SSLdo_handshake(): self->ssl->debug = 1; The OpenSSL header files have this to say about this flag: /* set this flag to 1 and a sleep(1) is put into all SSL_read()