Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Removed FutureWarnings related to hex/oct literals and conversions | Guido van Rossum | 2003-11-29 | 1 | -36/+28 |
| | | | | | | | | | | and left shifts. (Thanks to Kalle Svensson for SF patch 849227.) This addresses most of the remaining semantic changes promised by PEP 237, except for repr() of a long, which still shows the trailing 'L'. The PEP appears to promise warnings for operations that changed semantics compared to Python 2.3, but this is not implemented; we've suffered through enough warnings related to hex/oct literals and I think it's best to be silent now. | ||||
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -3/+1 |
| | | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807. | ||||
* | Fix SF bug #688424, 64-bit test problems | Neal Norwitz | 2003-02-18 | 1 | -26/+71 |
| | |||||
* | Fix typo. | Walter Dörwald | 2003-02-12 | 1 | -1/+1 |
| | |||||
* | Systematic testing of hex/oct constants. | Guido van Rossum | 2003-02-12 | 1 | -0/+81 |