Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #8248: Add some tests for the bool type. Patch by Gregory Nofi. | Antoine Pitrou | 2010-03-30 | 1 | -0/+2 |
| | |||||
* | Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* ↵ | Florent Xicluna | 2010-03-19 | 1 | -2/+6 |
| | | | | and setUp/tearDown. | ||||
* | Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are | Florent Xicluna | 2010-03-07 | 1 | -6/+3 |
| | | | | effectively raised. A new utility ``check_py3k_warnings`` deals with py3k warnings. | ||||
* | Issue #7532: Add additional slicing test cases for new- and old-style | Mark Dickinson | 2010-01-09 | 1 | -2/+97 |
| | | | | classes. Patch by Florent Xicluna. | ||||
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -11/+11 |
| | |||||
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
| | |||||
* | Fix those parts in the testsuite that assumed that sys.maxint would cause ↵ | Kristján Valur Jónsson | 2007-05-03 | 1 | -3/+6 |
| | | | | overflow on x64. Now the testsuite is well behaved on that platform. | ||||
* | Subclasses of int/long are allowed to define an __index__. | Neal Norwitz | 2006-08-15 | 1 | -8/+9 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-08-15 | 1 | -2/+2 |
| | |||||
* | Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots | Neal Norwitz | 2006-08-12 | 1 | -2/+9 |
| | | | | | | | | | | | were failing due to inappropriate clipping of numbers larger than 2**31 with new-style classes. (typeobject.c) In reviewing the code for classic classes, there were 2 problems. Any negative value return could be returned. Always return -1 if there was an error. Also make the checks similar with the new-style classes. I believe this is correct for 32 and 64 bit boxes, including Windows64. Add a test of classic classes too. | ||||
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -48/+126 |
| | | | | | | | I modified this patch some by fixing style, some error checking, and adding XXX comments. This patch requires review and some changes are to be expected. I'm checking in now to get the greatest possible review and establish a baseline for moving forward. I don't want this to hold up release if possible. | ||||
* | Minor bugs in the __index__ code (PEP 357), with tests. | Armin Rigo | 2006-03-30 | 1 | -95/+73 |
| | |||||
* | whitespace normalisation | Anthony Baxter | 2006-03-30 | 1 | -11/+11 |
| | |||||
* | Checking in the test for PEP 357. | Armin Rigo | 2006-03-30 | 1 | -0/+159 |
| | | | | | | This is from the SF tracker as well; for some reason the content of test_index.py was lost and an empty file was checked in instead. | ||||
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -0/+0 |
This was mostly written by Travis Oliphant. I've inspected it all; Neal Norwitz and MvL have also looked at it (in an earlier incarnation). |