Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Don't return spurious empty fields if 'keep_empty_values' is True. | Neil Schemenauer | 2004-07-19 | 1 | -2/+21 | |
| | | | | Fixes SF bug #990307. | |||||
* | Complete the absolute import patch for the test suite. All relative | Barry Warsaw | 2002-07-30 | 1 | -1/+1 | |
| | | | | | | | | imports of test modules now import from the test package. Other related oddities are also fixed (like DeprecationWarning filters that weren't specifying the full import part, etc.). Also did a general code cleanup to remove all "from test.test_support import *"'s. Other from...import *'s weren't changed. | |||||
* | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -27/+28 | |
| | | | | | | | and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | |||||
* | Fix a bizarre typo in the helper class ComparableException: the | Guido van Rossum | 2001-01-17 | 1 | -1/+1 | |
| | | | | | | | | | | | | | __getattr__() method, which clearly (like the other methods) was intended to pass the __getattr__() call on to the self.err object, mistakenly returned getattr(self, self.err) rather than getattr(self.err, attr). Since self.err is not a string, this always raises a TypeError. Apparently that doesn't bother for the one attribute for which __getattr__() is actually called ('__coerce__'), but it broke the rich comparisons stuff that I'm trying to get into shape, so I'm fixing this now. (I could also simply remove the __getattr__() method, but fixing it seems more in the spirit of what the ComparableException class is trying to do.) | |||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 1 | -3/+3 | |
| | ||||||
* | fix bug #110661 (PR#356) -- accept either & or ; as separator for CGI | Jeremy Hylton | 2000-09-15 | 1 | -0/+5 | |
| | | | | | | query string also some doc string reformatting and use of string methods instead of older string.splitfields | |||||
* | Closing patch #101120 -- After everyone agreed. | Moshe Zadka | 2000-08-25 | 1 | -3/+13 | |
| | ||||||
* | test the non-multipart sections of the cgi module | Jeremy Hylton | 2000-08-03 | 1 | -0/+172 | |