Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
| | |||||
* | Missed test for rev. 46933; infinite recursion from __coerce__() returning ↵ | Brett Cannon | 2006-06-13 | 1 | -1/+19 |
| | | | | its arguments reversed. | ||||
* | whitespace normalisation | Anthony Baxter | 2006-03-30 | 1 | -4/+4 |
| | |||||
* | Make test_coercion pass with -Qnew. Converted to unittest on the occasion. | Georg Brandl | 2006-03-28 | 1 | -82/+242 |
| | |||||
* | PEP 352 implementation. Creates a new base class, BaseException, which has an | Brett Cannon | 2006-03-01 | 1 | -3/+3 |
| | | | | | | | | | added message attribute compared to the previous version of Exception. It is also a new-style class, making all exceptions now new-style. KeyboardInterrupt and SystemExit inherit from BaseException directly. String exceptions now raise DeprecationWarning. Applies patch 1104669, and closes bugs 1012952 and 518846. | ||||
* | Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with | Armin Rigo | 2004-12-23 | 1 | -0/+36 |
| | | | | | a minor change after the coercion, to accept two objects not necessarily of the same type but with the same tp_compare. | ||||
* | Make test_coercion.py less sensitive to platform fp quirks. Closes | Neil Schemenauer | 2004-03-10 | 1 | -4/+19 |
| | | | | SF bug #678265. | ||||
* | 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. | ||||
* | Tighten up some warning filters, and break some dependencies on the | Tim Peters | 2002-04-16 | 1 | -1/+2 |
| | | | | order in which the tests are normally run. | ||||
* | It makes more sense to call resetwarnings() after every test runs than | Tim Peters | 2002-04-16 | 1 | -5/+2 |
| | | | | to keep doing that in every test that wants to filter a warning. | ||||
* | Reduce the number of test-suite DeprecationWarnings; start adding | Tim Peters | 2002-04-15 | 1 | -2/+9 |
| | | | | resetwarnings() calls too. | ||||
* | Use numbers that can be accurately represented on binary machines. I hope | Neil Schemenauer | 2001-01-03 | 1 | -2/+2 |
| | | | | this works on all platforms. | ||||
* | Add more tests for compare and coercion in preparation for the coercion | Neil Schemenauer | 2001-01-02 | 1 | -0/+113 |
overhaul. Closes SF patch #102878. |