| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Patch 10124 by Bill Janssen, docs for the new ssl code. | Guido van Rossum | 2007-08-27 | 4 | -92/+322 |
|
|
* | > Some of the code sets the error string in this directly before | Guido van Rossum | 2007-08-27 | 1 | -88/+110 |
|
|
* | > Regardless, building a fixed test certificate and checking it in sounds like | Guido van Rossum | 2007-08-27 | 2 | -8/+42 |
|
|
* | Ignore test failures caused by 'resource temporarily unavailable' | Facundo Batista | 2007-08-27 | 1 | -12/+43 |
|
|
* | If we can't create a certificate, print a warning, but don't fail the test. | Neal Norwitz | 2007-08-27 | 1 | -13/+16 |
|
|
* | Make a utility function for handling (printing) an error | Neal Norwitz | 2007-08-27 | 1 | -16/+14 |
|
|
* | Stop using string.join (from the module) to ease upgrade to py3k | Neal Norwitz | 2007-08-27 | 1 | -10/+10 |
|
|
* | Another patch from Bill Janssen that: | Neal Norwitz | 2007-08-26 | 1 | -6/+16 |
|
|
* | Catch IOError for when the device file doesn't exist or the user doesn't have | Neal Norwitz | 2007-08-26 | 1 | -1/+1 |
|
|
* | Get the test passing by commenting out some writes (should they be removed?) | Neal Norwitz | 2007-08-26 | 1 | -2/+2 |
|
|
* | Bill Janssen wrote: | Guido van Rossum | 2007-08-26 | 2 | -43/+87 |
|
|
* | Fail gracefully if the cert files cannot be created | Neal Norwitz | 2007-08-26 | 1 | -2/+7 |
|
|
* | Reap children before the test starts so hopefully SocketServer | Neal Norwitz | 2007-08-26 | 1 | -0/+1 |
|
|
* | Spell check (also americanify behaviour, it's almost 3 times as common) | Neal Norwitz | 2007-08-26 | 1 | -26/+26 |
|
|
* | Fix typo in docstring (missing c in reacquire) | Neal Norwitz | 2007-08-26 | 1 | -1/+1 |
|
|
* | keep setup.py from listing unneeded hash modules (_md5, _sha*) as | Gregory P. Smith | 2007-08-26 | 1 | -4/+11 |
|
|
* | Try to get this test to pass for systems that do not have SO_REUSEPORT | Neal Norwitz | 2007-08-25 | 1 | -1/+4 |
|
|
* | Fix a few more variables to try to get this to compile with Visual Studio. | Neal Norwitz | 2007-08-25 | 1 | -2/+3 |
|
|
* | Fix test so it is skipped properly if there is no SSL support. | Neal Norwitz | 2007-08-25 | 1 | -2/+6 |
|
|
* | Try to get this to build with Visual Studio by moving all the variable | Neal Norwitz | 2007-08-25 | 1 | -17/+24 |
|
|
* | Server-side SSL and certificate validation, by Bill Janssen. | Guido van Rossum | 2007-08-25 | 7 | -98/+1038 |
|
|
* | Fix bug 1764407 - the -i switch now does the right thing when using the -m sw... | Nick Coghlan | 2007-08-25 | 4 | -66/+102 |
|
|
* | Revert compile.c changes that shouldn't have been included in previous checkin | Nick Coghlan | 2007-08-25 | 1 | -7/+2 |
|
|
* | Revert misguided attempt at fixing incompatibility between -m and -i switches... | Nick Coghlan | 2007-08-25 | 4 | -45/+55 |
|
|
* | Make test_structmembers pass when run with regrtests's -R flag. | Collin Winter | 2007-08-24 | 1 | -6/+9 |
|
|
* | Port test_class to unittest. Patch #1671298. | Georg Brandl | 2007-08-24 | 2 | -387/+497 |
|
|
* | Catch the correct errors. | Georg Brandl | 2007-08-24 | 2 | -2/+2 |
|
|
* | Convert test_pkg to use unittest. | Collin Winter | 2007-08-24 | 2 | -285/+251 |
|
|
* | Convert test_linuxaudiodev to unittest. Fix a wrong finally clause in test_os... | Georg Brandl | 2007-08-24 | 3 | -76/+78 |
|
|
* | Remove output file for test_ossaudiodev, also properly close the dsp object. | Georg Brandl | 2007-08-24 | 2 | -5/+3 |
|
|
* | Remove test_rgbimg output file, there is no test_rgbimg.py. | Georg Brandl | 2007-08-24 | 1 | -2/+0 |
|
|
* | Document new utility functions in test_support. | Georg Brandl | 2007-08-24 | 1 | -2/+31 |
|
|
* | Port test_frozen to unittest. | Georg Brandl | 2007-08-24 | 3 | -27/+52 |
|
|
* | Patch #1008: port test_signal to unittest. | Georg Brandl | 2007-08-24 | 2 | -163/+171 |
|
|
* | Fix #1012: wrong URL to :mod:`site` in install/index.rst. | Georg Brandl | 2007-08-24 | 1 | -5/+2 |
|
|
* | Patch #1006: port test_winreg to unittest. | Georg Brandl | 2007-08-24 | 2 | -133/+149 |
|
|
* | Bug #1011: fix rfc822.Message.getheader docs. | Georg Brandl | 2007-08-24 | 1 | -2/+4 |
|
|
* | Fix silly typo in test name. | Guido van Rossum | 2007-08-24 | 1 | -1/+1 |
|
|
* | Bug #1765375: fix stripping of unwanted LDFLAGS. | Georg Brandl | 2007-08-24 | 1 | -1/+2 |
|
|
* | uuid creation is now threadsafe, backport from py3k rev. 57375. | Georg Brandl | 2007-08-24 | 2 | -1/+6 |
|
|
* | Fix bug 1725856. | Gregory P. Smith | 2007-08-24 | 2 | -0/+20 |
|
|
* | Patch #1779550: remove redundant code in logging. | Georg Brandl | 2007-08-23 | 1 | -15/+3 |
|
|
* | Bug #1758696: more info about descriptors. | Georg Brandl | 2007-08-23 | 1 | -3/+10 |
|
|
* | Bug #1625381: clarify match vs search introduction. | Georg Brandl | 2007-08-23 | 1 | -5/+5 |
|
|
* | Bug #1688564: document os.path.join's absolute path behavior in the docstring. | Georg Brandl | 2007-08-23 | 2 | -2/+6 |
|
|
* | Bug #1734111: document struct.Struct.size. | Georg Brandl | 2007-08-23 | 1 | -0/+5 |
|
|
* | Bug #1752332: httplib no longer uses socket.getaddrinfo(). | Georg Brandl | 2007-08-23 | 1 | -1/+1 |
|
|
* | Clarify wording a bit. | Georg Brandl | 2007-08-23 | 1 | -11/+13 |
|
|
* | Bug #1594966: fix misleading usage example | Georg Brandl | 2007-08-23 | 1 | -16/+4 |
|
|
* | Bug #1694833: fix imp.find_module() docs wrt. packages. | Georg Brandl | 2007-08-23 | 1 | -35/+43 |
|
|