1. b2a5be0 Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if by Serhiy Storchaka · 7 years ago
  2. b0c04cb fix slice cache finalization to use gc del by Benjamin Peterson · 8 years ago
  3. 2b601d3 add gc support to slice (closes #26659) by Benjamin Peterson · 8 years ago
  4. c49477b Make Ellipsis and NotImplemented picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  5. ffdb2c2 Issue #16451: Refactor to remove duplication between range and slice in slice index computations. by Mark Dickinson · 12 years ago
  6. c8a6967 Issue #14794: slice.indices no longer returns OverflowError for out-of-range start, stop, step or length. by Mark Dickinson · 12 years ago
  7. 042fa65 Issue #14783: Merge changes from 3.2. by Chris Jerdonek · 12 years ago
  8. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  9. f34a0cd Issue #10227: Add an allocation cache for a single slice object. by Antoine Pitrou · 13 years ago
  10. 897d059 merge 3.2 (#13199) by Benjamin Peterson · 13 years ago
  11. 2963fe0 plug possible refleak (closes #13199) by Benjamin Peterson · 13 years ago
  12. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  13. c4607ae make the types of None and Ellipsis callable by Benjamin Peterson · 13 years ago
  14. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  15. 23d05c1 use helper hash unimplemented function by Benjamin Peterson · 14 years ago
  16. e6fc740 In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX] rather than [PY_SSIZE_T_MIN, PY_SSIZE_T_MAX]. by Mark Dickinson · 14 years ago
  17. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  18. fd838e6 Merged revisions 71734,71738-71739 via svnmerge from by Benjamin Peterson · 15 years ago
  19. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  20. fea6a94 Merged revisions 64365,64370,64406,64408-64409,64412,64416-64417,64420-64421,64425-64428 via svnmerge from by Benjamin Peterson · 16 years ago
  21. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  22. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  23. e1a0d11 #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. by Georg Brandl · 17 years ago
  24. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
  25. 3e57b52 Fix buglet in sliceobjects, they were not returning Py_NotImplemented when by Thomas Wouters · 17 years ago
  26. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  27. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 17 years ago
  28. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  29. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  30. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  31. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  32. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  33. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  34. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  35. b859c07 SF bug #800796: Difference between hash() and __hash__() by Raymond Hettinger · 21 years ago
  36. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 21 years ago
  37. cbd6fb9 Handle really big steps in extended slices. by Michael W. Hudson · 22 years ago
  38. 173f11d Some days, I think my comment of by Michael W. Hudson · 22 years ago
  39. 5c1ad84 Fix for platforms where int != long. by Michael W. Hudson · 22 years ago
  40. 206d8f8 Silly typo. Not sure how that got in. by Michael W. Hudson · 22 years ago
  41. f0d777c A few days ago, Guido said (in the thread "[Python-Dev] Python by Michael W. Hudson · 22 years ago
  42. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  43. 589dc93 Fix for problem reported by Neal Norwitz. Tighten up calculation of by Michael W. Hudson · 22 years ago
  44. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  45. 7465ad2 Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  46. dcc819a Use pymalloc if it's enabled. by Neil Schemenauer · 22 years ago
  47. d82fb78 Add values to tp_getattro and tp_flags so that dir(Ellipsis) will by Guido van Rossum · 23 years ago
  48. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  49. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  50. a1351fb SF patch #408326 by Robin Thomas: slice objects comparable, not hashable by Guido van Rossum · 23 years ago
  51. adf5410 Test for NULL returned from PyObject_NEW(). by Guido van Rossum · 24 years ago
  52. 45cfbcc ANSI-fication of the sources. by Fred Drake · 24 years ago
  53. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  54. e449af7 Ellipses -> Ellipsis rename (the dictionary really says that it should by Guido van Rossum · 28 years ago
  55. fd4904c repr("...") -> "Ellipses" by Guido van Rossum · 28 years ago
  56. f2d125b Added sliceobject.c by Guido van Rossum · 28 years ago