1. 34fd4c2 bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284) by Serhiy Storchaka · 6 years ago
  2. e46fb86 bpo-28876: bool of large range raises OverflowError (#699) by 4kir4 · 7 years ago
  3. df53392 Issue #28376: Creating instances of range_iterator by calling range_iterator by Serhiy Storchaka · 8 years ago
  4. c7f490c Issue #28376: Creating instances of range_iterator by calling range_iterator by Serhiy Storchaka · 8 years ago
  5. 639098c Merge from 3.5. by Serhiy Storchaka · 8 years ago
  6. 44759bc Issue #28376: The constructor of range_iterator now checks that step is not 0. by Serhiy Storchaka · 8 years ago
  7. e4fbb02 Remove unused support.run_unittest imports. by Serhiy Storchaka · 8 years ago
  8. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  9. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  10. c5cc501 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  11. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  12. 25ea45d Merge with 3.3 by Kristján Valur Jónsson · 10 years ago
  13. 4ca688e Fix pickling of rangeiter. rangeiter_setstate would not allow setting it by Kristján Valur Jónsson · 10 years ago
  14. 8f2ee6e Fix writing out 64-bit size fields on 32-bit builds by Antoine Pitrou · 11 years ago
  15. c992faf Issue #16402: Merge fix from 3.3 by Mark Dickinson · 12 years ago
  16. 1321eda Issue #16402: Merge fix from 3.2 by Mark Dickinson · 12 years ago
  17. 8cd1c76 Issue #16402: In range slicing, fix shadowing of exceptions from __index__ method. by Mark Dickinson · 12 years ago
  18. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  19. 878ce38 add introspection to range objects (closes #9896) by Benjamin Peterson · 13 years ago
  20. 3664568 Issue #13201: equality for range objects is now based on equality of the underlying sequences. Thanks Sven Marnach for the patch. by Mark Dickinson · 13 years ago
  21. 982ef4e #11845: Fix typo in rangeobject.c that caused a crash in compute_slice_indices. Patch by Daniel Urban. by Ezio Melotti · 13 years ago
  22. e993b10 Issue 10889: Support slicing and indexing of large ranges (no docs changes, since, as far as I know, we never said anywhere that this *didn't* work) by Nick Coghlan · 14 years ago
  23. 37ee850 Issue 2690: Add support for slicing and negative indices to range objects (includes precalculation and storage of the range length). by Nick Coghlan · 14 years ago
  24. d57bb55 fix two broken tests by Benjamin Peterson · 14 years ago
  25. 8d16ab3 merge all range tests into test_range by Benjamin Peterson · 14 years ago
  26. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  27. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  28. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  29. 91799ae remove 2.x specific warnings by Benjamin Peterson · 15 years ago
  30. d550c9a Issue #7298: Fix a variety of problems leading to wrong results with by Mark Dickinson · 15 years ago
  31. 418f81d Issue #1766304: The range.__contains__ optimization should only be by Mark Dickinson · 15 years ago
  32. 3e124ae Issue #1766304: Optimize membership testing for ranges: 'n in range(...)' by Mark Dickinson · 15 years ago
  33. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  34. 94f5583 Fix SystemError and a wasps nest of ref counting issues. by Raymond Hettinger · 15 years ago
  35. d0d0b65 Issue #4183: Some tests didn't run with pickle.HIGHEST_PROTOCOL. by Hirokazu Yamamoto · 16 years ago
  36. 7505607 Issue 2582: Fix pickling of range objects. by Alexandre Vassalotti · 16 years ago
  37. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  38. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  39. 2a857de Update name of test. by Walter Dörwald · 17 years ago
  40. 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 17 years ago[Renamed (96%) from Lib/test/test_xrange.py]
  41. 03b43d8 repr(range(10)) now returns 'range(0, 10)' for clarity. by Walter Dörwald · 17 years ago
  42. 67d9993 Add a few simple repr tests. by Walter Dörwald · 17 years ago
  43. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  44. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  45. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  46. 07519f8 Fix xrange tests now that xrange() (like many other places) no longer by Thomas Wouters · 18 years ago
  47. 64fa74d Get test to pass on amd64 (opteron). This is pretty hacky, but by Neal Norwitz · 20 years ago
  48. feec453 Bug 1003935: xrange overflows by Tim Peters · 20 years ago
  49. 1c0423a Exercise xrange a bit by Neal Norwitz · 20 years ago