1. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 8 years ago
  2. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  3. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 12 years ago
  4. 3e5cd1d Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from by Benjamin Peterson · 14 years ago
  5. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  6. ed61093 Merged revisions 75055 via svnmerge from by Ezio Melotti · 15 years ago
  7. 94c65d9 Merged revisions 72907 via svnmerge from by Benjamin Peterson · 15 years ago
  8. 053c61f Merged revisions 72495 via svnmerge from by Benjamin Peterson · 15 years ago
  9. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  10. d631371 Merged revisions 65209-65216,65225-65226,65233,65239,65246-65247,65255-65256 via svnmerge from by Benjamin Peterson · 16 years ago
  11. d4d478d Merge 65215: convert uses of int to Py_Ssize_t. by Raymond Hettinger · 16 years ago
  12. bee3253 Merged revisions 63361-63373,63375,63377-63380 via svnmerge from by Alexandre Vassalotti · 16 years ago
  13. d11ae5d Rename enumerate() kw argument name to "iterable" and fix "sequence"->"iterable" in some docstrings. by Georg Brandl · 16 years ago
  14. e9f305f Merged revisions 63208-63209,63211-63212,63214-63217,63219-63224,63226-63227,63229-63232,63234-63235,63237-63239,63241,63243-63246,63250-63254,63256-63259,63261,63263-63264,63266-63267,63269-63270,63272-63273,63275-63276,63278,63280-63281,63283-63284,63286-63287,63289-63290,63292-63293,63295-63296,63298-63299,63301-63302,63304-63305,63307,63309-63314,63316-63322,63324-63325,63327-63335,63337-63338,63340-63342,63344-63346,63348 via svnmerge from by Alexandre Vassalotti · 16 years ago
  15. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 16 years ago
  16. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 16 years ago
  17. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  18. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  19. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  20. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  21. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  22. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  23. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 18 years ago
  24. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  25. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  26. ba2fa63 en_sit will be freed when en is DECREF'd. Don't double free. by Neal Norwitz · 18 years ago
  27. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 18 years ago
  28. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  29. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 20 years ago
  30. d2afee4 Fix docstring typo. by Raymond Hettinger · 20 years ago
  31. 7892b1c * Add unittests for iterators that report their length by Raymond Hettinger · 20 years ago
  32. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 20 years ago
  33. d2c3626 Eliminate the double reverse option. It's only use case by Raymond Hettinger · 20 years ago
  34. 029dba5 Make reversed() transparent with respect to length. by Raymond Hettinger · 20 years ago
  35. 06353f7 Let reversed() work with itself. by Raymond Hettinger · 20 years ago
  36. c058fd1 * Fix ref counting in extend() and extendleft(). by Raymond Hettinger · 20 years ago
  37. 1021c44 Optimize reversed(list) using a custom iterator. by Raymond Hettinger · 21 years ago
  38. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  39. 54a831b Use PyTuple_Pack() to simplify enumerate(). by Raymond Hettinger · 21 years ago
  40. e8b0f04 * Beefed-up tests * Allow tuple re-use * Call tp_iternext directly by Raymond Hettinger · 21 years ago
  41. fbbe347 Add a useful docstring to enumerate. by Jeremy Hylton · 21 years ago
  42. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  43. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  44. ca5ed5b Remove the next() method -- one is supplied automatically by by Guido van Rossum · 22 years ago
  45. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  46. 7dab242 - New builtin function enumerate(x), from PEP 279. Example: by Guido van Rossum · 22 years ago