summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_hexoct.py
Commit message (Collapse)AuthorAgeFilesLines
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-291-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örwald2003-05-011-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 problemsNeal Norwitz2003-02-181-26/+71
|
* Fix typo.Walter Dörwald2003-02-121-1/+1
|
* Systematic testing of hex/oct constants.Guido van Rossum2003-02-121-0/+81