Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #1710352: add missing public functions to locale.__all__. | Georg Brandl | 2007-05-01 | 1 | -3/+5 |
| | |||||
* | This gets the test working on Solaris. It seems a little hokey to me, | Neal Norwitz | 2007-04-27 | 1 | -0/+19 |
| | | | | but the test passed on Linux and Solaris, hopefully other platforms too. | ||||
* | The locale "En" appears not to be valid on windows underi VisualStudio.2005. ↵ | Kristján Valur Jónsson | 2007-04-26 | 1 | -1/+1 |
| | | | | Added "English" to the test_locale.py to make the testsuite pass for that build | ||||
* | Fix an issue related to the unittest conversion. | Collin Winter | 2007-04-25 | 1 | -0/+6 |
| | |||||
* | Convert test_ossaudiodev to use unittest. | Collin Winter | 2007-04-25 | 1 | -120/+125 |
| | |||||
* | Import and raise statement cleanup. | Collin Winter | 2007-04-25 | 1 | -17/+9 |
| | |||||
* | Change test_support.have_unicode to use True/False instead of 1/0. | Collin Winter | 2007-04-25 | 1 | -2/+2 |
| | |||||
* | Remove functionality from test_datetime.test_main() that does reference ↵ | Collin Winter | 2007-04-25 | 1 | -20/+1 |
| | | | | count checking; 'regrtest.py -R' is the way to do this kind of testing. | ||||
* | Standardize on test.test_support.run_unittest() (as opposed to a mix of ↵ | Collin Winter | 2007-04-25 | 28 | -173/+74 |
| | | | | run_unittest() and run_suite()). Also, add functionality to run_unittest() that admits usage of unittest.TestLoader.loadTestsFromModule(). | ||||
* | Whitespace normalization. Ugh, we really need to do this more often. | Neal Norwitz | 2007-04-25 | 38 | -387/+386 |
| | | | | You might want to review this change as it's my first time. Be gentle. :-) | ||||
* | Bug #1706381: Specifying the SWIG option "-c++" in the setup.py file | Georg Brandl | 2007-04-24 | 1 | -1/+2 |
| | | | | | (as opposed to the command line) will now write file names ending in ".cpp" too. | ||||
* | Fix SF #1703110, Incorrect example for add_password() (use uri, not host) | Neal Norwitz | 2007-04-24 | 1 | -1/+4 |
| | |||||
* | Remove code that hasn't been called in years. | Collin Winter | 2007-04-24 | 1 | -34/+0 |
| | |||||
* | Convert PyUnit -> unittest. | Collin Winter | 2007-04-24 | 1 | -11/+10 |
| | |||||
* | As specified in RFC 2616, 2xx code indicates that the client's | Facundo Batista | 2007-04-23 | 2 | -4/+14 |
| | | | | | request was successfully received, understood, and accepted. Now in these cases no error is raised. Also fixed tests. | ||||
* | Added tests for other methods of SSL object. Now we cover | Facundo Batista | 2007-04-22 | 1 | -0/+15 |
| | | | | | all the object methods. This is the final step to close the #451607 bug. | ||||
* | Bug #1704790: bind name "sys" locally in __del__ method so that it is | Georg Brandl | 2007-04-21 | 1 | -1/+1 |
| | | | | not cleared before __del__ is run. | ||||
* | Revert r53997 as per | Armin Rigo | 2007-04-19 | 1 | -87/+61 |
| | | | | | | | | | http://mail.python.org/pipermail/python-dev/2007-March/071796.html . I've kept a couple of still-valid extra tests in test_descr, but didn't bother to sort through the new comments and refactorings added in r53997 to see if some of them could be kept. If so, they could go in a follow-up check-in. | ||||
* | Check the availability of the urlfetch resource earlier than before. | Collin Winter | 2007-04-16 | 1 | -0/+2 |
| | |||||
* | When __slots__ are set to a unicode string, make it work the same as | Neal Norwitz | 2007-04-14 | 1 | -1/+17 |
| | | | | setting a plain string, ie don't expand to single letter identifiers. | ||||
* | Port r54805 from python25-maint branch: | Barry Warsaw | 2007-04-13 | 1 | -0/+20 |
| | | | | | | | | Add code to read from master_fd in the parent, breaking when we get an OSError (EIO can occur on Linux) or there's no more data to read. Without this, test_pty.py can hang on the waitpid() because the child is blocking on the stdout write. This will definitely happen on Mac OS X and could potentially happen on other platforms. See the comment for details. | ||||
* | Fix utf-8-sig incremental decoder, which didn't recognise a BOM when the | Walter Dörwald | 2007-04-12 | 2 | -7/+17 |
| | | | | first chunk fed to the decoder started with a BOM, but was longer than 3 bytes. | ||||
* | Patch #1695862: remove the cleanup code, now that Windows buildbots are green | Žiga Seilnacht | 2007-04-12 | 1 | -17/+0 |
| | | | | again. | ||||
* | Patch #1698951: clarify deprecation message in rexec and Bastion | Georg Brandl | 2007-04-12 | 2 | -2/+2 |
| | |||||
* | SF 1193128: Let str.translate(None) be an identity transformation | Raymond Hettinger | 2007-04-12 | 2 | -1/+4 |
| | |||||
* | Exceptions are no longer old-style instances. Fix accordingly. | Georg Brandl | 2007-04-11 | 1 | -2/+2 |
| | |||||
* | SF 1191699: Make slices picklable | Raymond Hettinger | 2007-04-11 | 1 | -0/+8 |
| | |||||
* | Add window.chgat() method, submitted via e-mail by Fabian Kreutz | Andrew M. Kuchling | 2007-04-11 | 1 | -0/+6 |
| | |||||
* | General clean-up. Lot of margin corrections, comments, some typos. | Facundo Batista | 2007-04-10 | 1 | -159/+170 |
| | | | | | Exceptions now are raised in the new style. And a mockup class is now also new style. Thanks Santiago Pereson. | ||||
* | Typo fix. | Collin Winter | 2007-04-10 | 1 | -1/+1 |
| | |||||
* | Minor fix to the tests pass ok even with -O. | Facundo Batista | 2007-04-10 | 1 | -1/+2 |
| | |||||
* | Patch #1695862: remove old test directory that causes test_urllib failures | Žiga Seilnacht | 2007-04-09 | 1 | -0/+14 |
| | | | | | on Windows buildbots. The change is a one time fix and will be removed after a successful buildbot run. | ||||
* | Added optional timeout to SocketHandler.makeSocket (SF #1695948) | Vinay Sajip | 2007-04-09 | 1 | -1/+3 |
| | |||||
* | Convert test_fileinput to use unittest. | Collin Winter | 2007-04-07 | 1 | -198/+196 |
| | |||||
* | Convert test_module to use unittest. | Collin Winter | 2007-04-06 | 1 | -45/+58 |
| | |||||
* | Convert test_gc to use unittest. | Collin Winter | 2007-04-06 | 1 | -588/+548 |
| | |||||
* | Import cleanup in test_crypt. | Collin Winter | 2007-04-06 | 1 | -1/+1 |
| | |||||
* | Convert test_stringprep to use unittest. | Collin Winter | 2007-04-06 | 1 | -61/+69 |
| | |||||
* | Convert test_normalization to use unittest. | Collin Winter | 2007-04-05 | 1 | -51/+57 |
| | |||||
* | Convert test_long_future to use unittest. | Collin Winter | 2007-04-05 | 1 | -50/+50 |
| | |||||
* | Bug #1563759: struct.unpack doens't support buffer protocol objects | Raymond Hettinger | 2007-04-05 | 1 | -0/+8 |
| | |||||
* | Fix WalkTests.test_traversal() on Windows. The cleanup in | Žiga Seilnacht | 2007-04-04 | 1 | -25/+18 |
| | | | | MakedirTests.setUp() can now be removed. | ||||
* | Make test_softspace use unittest. | Collin Winter | 2007-04-04 | 1 | -11/+20 |
| | |||||
* | Make test_getopt use unittest. | Collin Winter | 2007-04-04 | 1 | -174/+173 |
| | |||||
* | Bug #1686475: Support stat'ing open files on Windows again. | Martin v. Löwis | 2007-04-04 | 1 | -0/+9 |
| | | | | Will backport to 2.5. | ||||
* | Stop using test_support.verify(). | Collin Winter | 2007-04-04 | 1 | -8/+6 |
| | |||||
* | Clean up imports. | Collin Winter | 2007-04-04 | 1 | -4/+4 |
| | |||||
* | Fix a race condition in this test -- instead of assuming that it will take | Guido van Rossum | 2007-04-04 | 1 | -1/+5 |
| | | | | | the test server thread at most 0.5 seconds to get ready, use an event variable. | ||||
* | Fixed the way that the .pem files are looked for, and changed | Facundo Batista | 2007-04-04 | 1 | -16/+9 |
| | | | | how to kill the process in win32 to use the _handle attribute. | ||||
* | Changed the whole structure of startup and checking if the | Facundo Batista | 2007-04-03 | 1 | -26/+36 |
| | | | | server is available. Hope to not get more false alarms. |