Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Guido grants a Christmas wish: | Raymond Hettinger | 2003-12-17 | 1 | -1/+1 |
| | | | | sorted() becomes a regular function instead of a classmethod. | ||||
* | As discussed on python-dev, added two extractor functions to the | Raymond Hettinger | 2003-12-01 | 1 | -0/+39 |
| | | | | operator module. | ||||
* | SF patch #670423: Add missing identity tests to operator.c | Raymond Hettinger | 2003-01-18 | 1 | -0/+11 |
| | |||||
* | Added __pow__(a,b) to the operator module. Completes the pattern of | Raymond Hettinger | 2002-08-19 | 1 | -0/+6 |
| | | | | | | all operators having a counterpart in the operator module. Closes SF bug #577513. | ||||
* | 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. :) | ||||
* | Change the PyUnit-based tests to use the test_main() approach. This | Fred Drake | 2001-09-20 | 1 | -1/+6 |
| | | | | | allows using the tests with unittest.py as a script. The tests will still run when run as a script themselves. | ||||
* | The first batch of changes recommended by the fixdiv tool. These are | Guido van Rossum | 2001-09-04 | 1 | -1/+1 |
| | | | | | mostly changes of / operators into //. Once or twice I did more or less than recommended. | ||||
* | Added tests for rich comparison operator functions. | Fred Drake | 2001-08-11 | 1 | -78/+212 |
| | | | | Converted tests to PyUnit. | ||||
* | Added tests for operator.floordiv() and operator.truediv(). | Fred Drake | 2001-08-09 | 1 | -0/+2 |
| | |||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -5/+5 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -3/+3 |
| | |||||
* | test_rotor.py: New test of the rotor module. | Barry Warsaw | 1996-12-23 | 1 | -0/+1 |
| | | | | | | | test_*: converted to the new test harness. GvR note! test_signal.py works interatively (i.e. when verbose=1) but does not work inside the test harness. It must be a timing issue, but I haven't figured it out yet. | ||||
* | Test of the operator module | Barry Warsaw | 1996-12-18 | 1 | -0/+76 |