[issue7702] Wrong order of parameters of _get_socket in SMTP class in smtplib.py

2010-08-01 Thread Georg Brandl
Georg Brandl added the comment: This appears to have been fixed since r61624. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___ ___

[issue7702] Wrong order of parameters of _get_socket in SMTP class in smtplib.py

2010-01-14 Thread alito
New submission from alito : Trivial change with (almost) no effect. The method signature for _get_socket in the SMTP class in stmplib.py is def _get_socket(self, port, host, timeout) It should be: def _get_socket(self, host, port, timeout) Evidence: 1) It calls socket.create_connection((por