Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | connector(): You can't use an empty string as an argument to connect() | Tim Peters | 2003-07-01 | 1 | -1/+1 |
| | | | | on Windows. | ||||
* | Fix SF bug #763770, test_socket_ssl crash | Neal Norwitz | 2003-07-01 | 1 | -2/+2 |
| | | | | Don't run any tests if there is no ssl support. | ||||
* | Fix SF #754870, SSL crash interpreter when remote side closes during connect | Neal Norwitz | 2003-06-30 | 1 | -1/+37 |
| | | | | Also fix a memory leak. | ||||
* | Rearrange test_socket_ssl so that a skip is expected iff the network | Tim Peters | 2002-12-04 | 1 | -19/+24 |
| | | | | resource isn't enabled or the socket module doesn't support ssl. | ||||
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :) | ||||
* | Whitespace normalization. | Tim Peters | 2001-10-18 | 1 | -3/+0 |
| | |||||
* | Add trivial test cases for RAND_add() and RAND_status(). | Jeremy Hylton | 2001-10-18 | 1 | -1/+15 |
| | | | | (The rest of the test cases are trivial, so I don't feel too bad.) | ||||
* | Skip instead of fail this test if the socket module has no ssl | Guido van Rossum | 2001-09-06 | 1 | -0/+3 |
| | | | | support. | ||||
* | A test of SSL support, using a roundabout method suggested by Guido. | Barry Warsaw | 2001-08-20 | 1 | -0/+13 |
However, this is only enabled with regrtest's --use=network switch. |