summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_smtpnet.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-2/+0
| | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface.
* Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by ↵Antoine Pitrou2011-05-071-0/+7
| | | | Kasun Herath.
* Merged revisions 85423 via svnmerge fromAntoine Pitrou2010-10-131-1/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85423 | antoine.pitrou | 2010-10-13 19:14:16 +0200 (mer., 13 oct. 2010) | 3 lines Protect test_smtpnet against connection failures ........
* Fix spelling left over from testing.R. David Murray2009-05-231-1/+1
|
* Don't be so wordy in requires('network') in case other testsR. David Murray2009-05-231-5/+2
| | | | are added later, and skip the existing test if SSL is not available.
* Fix Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returnsR. David Murray2009-05-231-0/+26
the socket. Patch by Farhan Ahmad, test by Marcin Bachry.