1. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  2. 3513358 Issue 2440: remove the guard around the handling of case 'n' in getargs.c's convertsimple() such that we always treat it as an index type, regardless of whether or not sizeof(size_t) == sizeof(long). Fix the test_args2.Signed_TestCase.test_n() such that it tests for adherence to PEP 357 (don't try and coerce objects that don't have nb_index slots but do have nb_int slots (i.e. floats) into indexes 'just because we can'). Three other commits are related to this one: r62269 and r62279, which were changes to PyNumber_Index (among other things) to check for nb_int slots when we lack nb_index slots -- and r62292, which is when I reverted these changes after various people pointed out that the test was in fact wrong, not the code. by Trent Nelson · 16 years ago
  3. 7179220 Issue 2440: revert r62269 and r62279. These changes were made in an effort to fix test_args2.Signed_TestCase.test_n(), which was failing on Windows x64 on the following line: 'self.failUnlessEqual(99, getargs_n(Long()))'. Although the two commits *did* fix the test on Windows x64, it's become clear that it's the test that's incorrect, and the changes to PyNumber_Index() in particular were not warranted (and actually violate PEP 357). This commit will get us back to where we were at r62268, before I started butchering things. by Trent Nelson · 16 years ago
  4. e2ae468 Issue 2440: fix the handling of %n in Python/getargs.c's convertsimple(), extend Objects/abstract.c's PyNumber_Index() to accept PyObjects that have nb_int slots, and update test_getargs2 to test that an exception is thrown when __int__() returns a non-int object. by Trent Nelson · 16 years ago
  5. 380f7f2 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61081-61095 via svnmerge from by Christian Heimes · 16 years ago
  6. 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 17 years ago
  7. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  8. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  9. d807328 Fix newly merged test for p3ykness. by Thomas Wouters · 18 years ago
  10. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  11. c947123 Fix tests for PyArg_Parse*; The PyArg_Parse functions no longer (noisily) by Thomas Wouters · 18 years ago
  12. 6ce7ed2 Revert previous checkin on getargs 'L' code. Try to convert all by Martin v. Löwis · 19 years ago
  13. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 21 years ago
  14. 54aa578 This test now uses the separate getargs_X functions from _testcapimodule. by Thomas Heller · 21 years ago
  15. 0eadaac Whitespace normalization. by Tim Peters · 21 years ago
  16. bbb931b Delete the 'h' test -- 'h' is no longer unsigned so the machinery here by Guido van Rossum · 21 years ago
  17. a4ea603 SF # 595026: support for masks in getargs.c. by Thomas Heller · 21 years ago