summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ssl.py
Commit message (Expand)AuthorAgeFilesLines
* `self` doesn't exist hereAntoine Pitrou2010-05-061-3/+3
* Remove duplicate testAntoine Pitrou2010-05-011-21/+0
* Fix style issues in test_sslAntoine Pitrou2010-04-281-138/+143
* Issue #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newlineAntoine Pitrou2010-04-271-0/+4
* socket.error can really happen here, and fix a possible NameErrorAntoine Pitrou2010-04-271-1/+4
* Qualify or remove or bare excepts. Simplify exception handling in places.Antoine Pitrou2010-04-271-193/+136
* replace custom code with standard library functionality (HTTPServer.shutdown())Antoine Pitrou2010-04-271-48/+7
* Remove uses of find_unused_port() in test_ssl, and small cleanupsAntoine Pitrou2010-04-271-19/+17
* Issue #5103: SSL handshake would ignore the socket timeout and blockAntoine Pitrou2010-04-241-3/+70
* Make test_makefile_close a networked test (can't read() from a non-connectedAntoine Pitrou2010-04-241-16/+18
* Issue #5238: Calling makefile() on an SSL object would prevent theAntoine Pitrou2010-04-231-0/+18
* Issue #7943: Fix circular reference created when instantiating an SSLAntoine Pitrou2010-04-231-0/+11
* Skip test on old versions of OpenSSLAntoine Pitrou2010-04-221-3/+3
* Temporarily display OpenSSL version in verbose run -- trying to diagnose fail...Antoine Pitrou2010-04-221-0/+3
* Issue #8484: Load all ciphers and digest algorithms when initializingAntoine Pitrou2010-04-211-0/+20
* Issue #8322: Add a *ciphers* argument to SSL sockets, so as to change theAntoine Pitrou2010-04-171-5/+31
* Issue #8321: Give access to OpenSSL version numbers from the `ssl` module,Antoine Pitrou2010-04-051-0/+28
* #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k...Florent Xicluna2010-03-211-2/+3
* Remove unused imports in test modules.Georg Brandl2010-02-071-3/+0
* We heard you like test failures so we put unbound locals in your test so that...Georg Brandl2010-02-061-8/+8
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-4/+2
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-2/+4
* Issue #7133: SSL objects now support the new buffer API.Antoine Pitrou2009-10-191-14/+15
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-1/+1
* fix for release blocker 3910, 2.6 regression in socket.ssl methodBill Janssen2008-09-291-1/+15
* incorporate fixes from issue 3162; SSL doc patchBill Janssen2008-09-081-0/+121
* fix old API names in test_sslBenjamin Peterson2008-08-181-4/+4
* remove duplicate close() from ssl.py; expose unwrap and add test for itBill Janssen2008-08-121-2/+17
* catch socket.error errors in badCertTestBill Janssen2008-07-171-0/+3
* make sure we close the active channels when eof is received on themBill Janssen2008-06-281-0/+1
* various SSL fixes; issues 1251, 3162, 3212Bill Janssen2008-06-281-33/+213
* - Issue #2550: The approach used by client/server code for obtaining portsTrent Nelson2008-04-081-49/+21
* Apply same patch from 3k branch to try and prevent this test from hangingNeal Norwitz2008-04-021-0/+1
* #2503 make singletons compared with "is" not == or !=Benjamin Peterson2008-03-291-1/+1
* Introduce a lock to fix a race condition which caused an exception in the test.Neal Norwitz2008-03-091-6/+16
* Disabled test_xmlrpc:test_404. It's causing lots of false alarms.Christian Heimes2008-01-191-2/+2
* use binary mode when reading files for testAsyncore to make Windows happyBill Janssen2007-09-161-1/+1
* Add support for asyncore server-side SSL support. This requiresBill Janssen2007-09-161-104/+270
* Make sure test_ssl doesn't reference the ssl module in aBill Janssen2007-09-111-1/+4
* A better way of finding an open port to test with.Bill Janssen2007-09-101-3/+26
* More work on SSL support.Bill Janssen2007-09-101-211/+536
* SSL certificate distinguished names should be represented by tuplesBill Janssen2007-09-051-8/+5
* > Regardless, building a fixed test certificate and checking it in sounds likeGuido van Rossum2007-08-271-8/+10
* If we can't create a certificate, print a warning, but don't fail the test.Neal Norwitz2007-08-271-13/+16
* Make a utility function for handling (printing) an errorNeal Norwitz2007-08-271-16/+14
* Stop using string.join (from the module) to ease upgrade to py3kNeal Norwitz2007-08-271-10/+10
* Another patch from Bill Janssen that:Neal Norwitz2007-08-261-6/+16
* Get the test passing by commenting out some writes (should they be removed?)Neal Norwitz2007-08-261-2/+2
* Bill Janssen wrote:Guido van Rossum2007-08-261-39/+82
* Fail gracefully if the cert files cannot be createdNeal Norwitz2007-08-261-2/+7