1. c7f490c Issue #28376: Creating instances of range_iterator by calling range_iterator by Serhiy Storchaka · 8 years ago
  2. 639098c Merge from 3.5. by Serhiy Storchaka · 8 years ago
  3. 44759bc Issue #28376: The constructor of range_iterator now checks that step is not 0. by Serhiy Storchaka · 8 years ago
  4. 1d7feab Issue #28045: Merge from 3.5 by Berker Peksag · 8 years ago
  5. ed6224e Issue #28045: Fix comment in range_contains_long() by Berker Peksag · 8 years ago
  6. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  7. 5d062d7 Issue #27333: Simplified testing step on 0. by Serhiy Storchaka · 8 years ago
  8. cfdfbb4 Issue #27342: Replaced some Py_XDECREFs with Py_DECREFs. Patch by Xiang Zhang. by Serhiy Storchaka · 8 years ago
  9. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  10. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  11. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  12. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 8 years ago
  13. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  14. ac5569b Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  15. fa494fd Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  16. 4320f54 merge 3.4 (#22785) by Benjamin Peterson · 9 years ago
  17. ac22c6b improved range docstring (closes #22785) by Benjamin Peterson · 9 years ago
  18. 009b811 Removed unintentional trailing spaces in non-external and non-generated C files. by Serhiy Storchaka · 9 years ago
  19. bcf8554 remove buzzword (closes #23210) by Benjamin Peterson · 9 years ago
  20. c5cc501 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  21. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  22. 25ea45d Merge with 3.3 by Kristján Valur Jónsson · 10 years ago
  23. 4ca688e Fix pickling of rangeiter. rangeiter_setstate would not allow setting it by Kristján Valur Jónsson · 10 years ago
  24. b32a811 #19067: merge with 3.3. by Ezio Melotti · 11 years ago
  25. 5792ce1 #19067: use imperative mood in range object docstrings. Patch by Marco Buttu. by Ezio Melotti · 11 years ago
  26. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  27. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  28. ffdb2c2 Issue #16451: Refactor to remove duplication between range and slice in slice index computations. by Mark Dickinson · 12 years ago
  29. 1321eda Issue #16402: Merge fix from 3.2 by Mark Dickinson · 12 years ago
  30. 8cd1c76 Issue #16402: In range slicing, fix shadowing of exceptions from __index__ method. by Mark Dickinson · 12 years ago
  31. 042fa65 Issue #14783: Merge changes from 3.2. by Chris Jerdonek · 12 years ago
  32. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  33. b7d033d Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. by Antoine Pitrou · 12 years ago
  34. a103b96 Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. by Antoine Pitrou · 12 years ago
  35. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  36. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  37. 878ce38 add introspection to range objects (closes #9896) by Benjamin Peterson · 13 years ago
  38. 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
  39. 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
  40. 616667f rangeobject.c (compute_slice_indices): Make function static. by Matthias Klose · 13 years ago
  41. 547d485 plug reference leak by Benjamin Peterson · 13 years ago
  42. 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 · 13 years ago
  43. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 13 years ago
  44. 37ee850 Issue 2690: Add support for slicing and negative indices to range objects (includes precalculation and storage of the range length). by Nick Coghlan · 13 years ago
  45. a1864f3 pep 7 actually wants the brace on a new line by Benjamin Peterson · 14 years ago
  46. 155614b code style and simplification by Benjamin Peterson · 14 years ago
  47. 7e5343b Add error handling in range_count. by Georg Brandl · 14 years ago
  48. 0b458d5 count() should return integers #10474 by Benjamin Peterson · 14 years ago
  49. 9f0cbf1 Issue #9213: Add index and count methods to range objects, needed to by Daniel Stutzbach · 14 years ago
  50. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  51. 36fbb73 fix one visible and several possible refleaks in rangeobject.c by Benjamin Peterson · 15 years ago
  52. b43dbc2 Fix another case of potential signed overflow. by Mark Dickinson · 15 years ago
  53. bde0508 r76292 commit accidentally committed some extra code; remove it by Mark Dickinson · 15 years ago
  54. d550c9a Issue #7298: Fix a variety of problems leading to wrong results with by Mark Dickinson · 15 years ago
  55. 418f81d Issue #1766304: The range.__contains__ optimization should only be by Mark Dickinson · 15 years ago
  56. 3e124ae Issue #1766304: Optimize membership testing for ranges: 'n in range(...)' by Mark Dickinson · 15 years ago
  57. c9a5a0e #6814: remove traces of xrange(). by Georg Brandl · 15 years ago
  58. 732166d Fix description of range_length_obj by Mark Dickinson · 15 years ago
  59. 1279209 this is also no longer true by Benjamin Peterson · 15 years ago
  60. a47af9c fix comment by Benjamin Peterson · 15 years ago
  61. eb36d31 Issue #6334: Fix buggy internal length calculation in builtin range function by Mark Dickinson · 15 years ago
  62. 94f5583 Fix SystemError and a wasps nest of ref counting issues. by Raymond Hettinger · 15 years ago
  63. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  64. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 15 years ago
  65. 7505607 Issue 2582: Fix pickling of range objects. by Alexandre Vassalotti · 16 years ago
  66. df0a5cb #2689 Fix indentation in Objects/rangeobject.c by Benjamin Peterson · 16 years ago
  67. ad3f332 Merge r60673 by Raymond Hettinger · 16 years ago
  68. 8445104 Drop _PyLong_FitsInLong. Fixes #1666. by Martin v. Löwis · 16 years ago
  69. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 16 years ago
  70. a22e8bd Added all PyTypeObjects to the appropriate header files. by Christian Heimes · 17 years ago
  71. f83be4e Added view and iterator types to collections / _abcoll by Christian Heimes · 17 years ago
  72. b7f17e4 Found another memory leak in longrangeiter. And redo the previous correction by Amaury Forgeot d'Arc · 17 years ago
  73. a1e9ec4 Correct a memory leak: the range() object was not properly freed. by Amaury Forgeot d'Arc · 17 years ago
  74. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  75. 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 17 years ago
  76. 03b43d8 repr(range(10)) now returns 'range(0, 10)' for clarity. by Walter Dörwald · 17 years ago
  77. 850e516 Change range_repr() to use %R for the start/stop/step attributes. by Walter Dörwald · 17 years ago
  78. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  79. 317e774 Merged revisions 55180-55183 via svnmerge from by Guido van Rossum · 17 years ago
  80. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  81. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  82. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  83. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  84. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  85. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  86. 6651748 Remove PyRange_New(). by Raymond Hettinger · 19 years ago
  87. feec453 Bug 1003935: xrange overflows by Tim Peters · 20 years ago
  88. d976ab7 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  89. f8df9a8 Add a missing decref. by Michael W. Hudson · 20 years ago
  90. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 20 years ago
  91. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  92. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  93. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  94. d2bef82 Update comments about the performance of xrange(). by Raymond Hettinger · 21 years ago
  95. 5ae8e01 Restore attribute access so that the following work again: by Raymond Hettinger · 22 years ago
  96. d4774fb Untested code for 64-bit platforms. range_length() is declared as int by Guido van Rossum · 22 years ago
  97. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  98. 86d593e Remove the next() method -- one is supplied automatically by by Guido van Rossum · 22 years ago
  99. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  100. 56f46f8 Pyrangeiter_Type && range_iter should be static by Neal Norwitz · 22 years ago