1. 7505607 Issue 2582: Fix pickling of range objects. by Alexandre Vassalotti · 16 years ago
  2. df0a5cb #2689 Fix indentation in Objects/rangeobject.c by Benjamin Peterson · 16 years ago
  3. ad3f332 Merge r60673 by Raymond Hettinger · 16 years ago
  4. 8445104 Drop _PyLong_FitsInLong. Fixes #1666. by Martin v. Löwis · 17 years ago
  5. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  6. a22e8bd Added all PyTypeObjects to the appropriate header files. by Christian Heimes · 17 years ago
  7. f83be4e Added view and iterator types to collections / _abcoll by Christian Heimes · 17 years ago
  8. b7f17e4 Found another memory leak in longrangeiter. And redo the previous correction by Amaury Forgeot d'Arc · 17 years ago
  9. a1e9ec4 Correct a memory leak: the range() object was not properly freed. by Amaury Forgeot d'Arc · 17 years ago
  10. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  11. 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 17 years ago
  12. 03b43d8 repr(range(10)) now returns 'range(0, 10)' for clarity. by Walter Dörwald · 17 years ago
  13. 850e516 Change range_repr() to use %R for the start/stop/step attributes. by Walter Dörwald · 17 years ago
  14. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  15. 317e774 Merged revisions 55180-55183 via svnmerge from by Guido van Rossum · 17 years ago
  16. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  17. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  18. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  19. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  20. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  21. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  22. 6651748 Remove PyRange_New(). by Raymond Hettinger · 20 years ago
  23. feec453 Bug 1003935: xrange overflows by Tim Peters · 20 years ago
  24. d976ab7 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  25. f8df9a8 Add a missing decref. by Michael W. Hudson · 20 years ago
  26. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 20 years ago
  27. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  28. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  29. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  30. d2bef82 Update comments about the performance of xrange(). by Raymond Hettinger · 22 years ago
  31. 5ae8e01 Restore attribute access so that the following work again: by Raymond Hettinger · 22 years ago
  32. d4774fb Untested code for 64-bit platforms. range_length() is declared as int by Guido van Rossum · 22 years ago
  33. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  34. 86d593e Remove the next() method -- one is supplied automatically by by Guido van Rossum · 22 years ago
  35. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  36. 56f46f8 Pyrangeiter_Type && range_iter should be static by Neal Norwitz · 22 years ago
  37. c4c453f Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. by Raymond Hettinger · 22 years ago
  38. 48165d4 SF 564601 adding rangeiterobject to make xrange() iterate like range(). by Raymond Hettinger · 22 years ago
  39. e53e7a2 Inverted test for small speedup by Raymond Hettinger · 22 years ago
  40. e452659 Patch #551410: Implement tp_getiter. by Martin v. Löwis · 22 years ago
  41. d901832 Remove old deprecated features from the xrange object. by Fred Drake · 22 years ago
  42. edb51bb Fix attribute access for the xrange objects. The tp_getattr and tp_getattro by Fred Drake · 22 years ago
  43. 9acae5a Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  44. dcc819a Use pymalloc if it's enabled. by Neil Schemenauer · 22 years ago
  45. 2a47c0f Fix spelling mistakes. Bugfix candidates. by Neal Norwitz · 23 years ago
  46. 03b3f04 long_mul(): The PyNumber_Multiply() call can return a long if the by Guido van Rossum · 23 years ago
  47. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  48. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  49. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  50. efafcea Re-add 'advanced' xrange features, adding DeprecationWarnings as discussed by Thomas Wouters · 23 years ago
  51. 3f56166 Rip out the fancy behaviors of xrange that nobody uses: repeat, slice, by Guido van Rossum · 23 years ago
  52. 65e0b99 SF patch #103158 by Greg Ball: Don't do unsafe arithmetic in xrange object. by Guido van Rossum · 24 years ago
  53. 9e8f4ea Test for NULL returned from PyObject_NEW(). by Guido van Rossum · 24 years ago
  54. 0b796fa Fixed support for containment test when a negative step is used; this by Fred Drake · 24 years ago
  55. a91e165 In the containment test, get the boundary condition right. ">" was used by Fred Drake · 24 years ago
  56. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  57. 72d421b Boost buffer sizes in the absence of snprintf on Windows. by Tim Peters · 24 years ago
  58. c76e0e5 snprintf() is not portable, so continue to use sprintf() until a portable by Fred Drake · 24 years ago
  59. 2b83b46 Remove the tp_print handler. by Fred Drake · 24 years ago
  60. 45cfbcc ANSI-fication of the sources. by Fred Drake · 24 years ago
  61. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  62. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  63. 5678025 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  64. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  65. 5dadf7e Use 'xrange', not 'range', in error messages. Reported by Nathan Sullivan. by Guido van Rossum · 26 years ago
  66. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  67. da9c271 Make gcc -Wall happy by Guido van Rossum · 28 years ago
  68. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  69. 6c02a2f Use NEWOBJ() macro instead of calling newobject() directly. by Guido van Rossum · 28 years ago
  70. ce00509 make a few things static by Guido van Rossum · 30 years ago
  71. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  72. 03093a2 * Include/classobject.h, Objects/classobject.c, Python/ceval.c: by Guido van Rossum · 30 years ago
  73. 7d6aa51 * rangeobject.[ch], bltinmodule.c: incorporate new version of range by Guido van Rossum · 31 years ago
  74. 2586bf0 * rangeobject.{c,h}, bltinmodule.c: removed non-essential ops from range by Guido van Rossum · 31 years ago
  75. 12d12c5 * compile.[ch]: support for lambda() by Guido van Rossum · 31 years ago