1. aed5a4e rearrange methodcaller_new so that the main error case does not cause uninitialized memory usage (closes #27783) by Benjamin Peterson · 8 years ago
  2. 4ef4eda Issue #26822: Decreased an overhead of using _PyArg_NoKeywords() in calls of by Serhiy Storchaka · 8 years ago
  3. 0207e76 Issue #26822: itemgetter, attrgetter and methodcaller objects no longer by Serhiy Storchaka · 9 years ago
  4. 8c16605 use logical rather than bit and by Benjamin Peterson · 10 years ago
  5. a1ccfb5 cast away warnings by Benjamin Peterson · 10 years ago
  6. 629026a backport hmac.compare_digest to partially implement PEP 466 (closes #21306) by Benjamin Peterson · 10 years ago
  7. 5f4ba6b #16523: improve attrgetter/itemgetter/methodcaller documentation. by Ezio Melotti · 11 years ago
  8. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  9. efc2858 #7259: show correct equivalent for operator.i* operations in docstring; fix minor issues in operator docs. by Georg Brandl · 15 years ago
  10. 0fe7991 Issue 2370: Add Python 3 warnings for the removal of operator.isCallable and by Alexandre Vassalotti · 15 years ago
  11. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  12. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  13. ebcfd11 #1506171: added operator.methodcaller(). by Georg Brandl · 17 years ago
  14. e2065c6 #1826: allow dotted attribute paths in operator.attrgetter. by Georg Brandl · 17 years ago
  15. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  16. 40c6261 Patch #1654417: make operator.{get,set,del}slice use the full range by Georg Brandl · 18 years ago
  17. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  18. 26fd960 Fix more ssize_t problems. by Martin v. Löwis · 19 years ago
  19. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
  20. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  21. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
  22. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  23. f5bd3b4 adding in-place operators to the operator module. by Armin Rigo · 19 years ago
  24. c4308d5 two missing PyDoc_STR(). by Armin Rigo · 19 years ago
  25. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  26. 984f9bb operator.itemgetter() and operator.attrgetter() now support extraction by Raymond Hettinger · 20 years ago
  27. bd3a240 Fix typos. by Raymond Hettinger · 21 years ago
  28. 166958b As discussed on python-dev, added two extractor functions to the by Raymond Hettinger · 21 years ago
  29. 9543b34 SF patch #670423: Add missing identity tests to operator.c by Raymond Hettinger · 22 years ago
  30. 36cd2bf SF patch 660559: Use METH_O and METH_NOARGS where possible by Raymond Hettinger · 22 years ago
  31. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  32. 5959c55 Added __pow__(a,b) to the operator module. Completes the pattern of by Raymond Hettinger · 22 years ago
  33. 200788c Allow more docstrings to be removed during compilation in some modules by Neal Norwitz · 22 years ago
  34. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  35. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  36. 2e1c09c Removed old Digital Creations copyright/license notices (with by Guido van Rossum · 23 years ago
  37. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 23 years ago
  38. 428e75f Add wrappers around the rich-comparison operations. by Fred Drake · 23 years ago
  39. ea4d3f0 Add invert() and __invert__() as aliases for inv()/__inv__(). by Fred Drake · 24 years ago
  40. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  41. 0c89d4e Pretensions of the 20th century... remove old-style preprocessor by Fred Drake · 24 years ago
  42. 5639ba4 ANSI-fy the sources. by Fred Drake · 24 years ago
  43. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  44. 832f6d2 Add an alias (and preferred name) "contains" for "sequenceIncludes". by Guido van Rossum · 26 years ago
  45. b1ed9c5 PySequence_In() -> PySequence_Contains(). by Guido van Rossum · 26 years ago
  46. 99c185e Add not_ and __not__. by Guido van Rossum · 27 years ago
  47. 9efe8ef #Plug small memory leaks in constructors. by Guido van Rossum · 27 years ago
  48. 24a4994 Some long variables should have been int to match the 'i' format specifier. by Guido van Rossum · 27 years ago
  49. 19f61ae Tabification changes only; the module was already newly named. by Barry Warsaw · 28 years ago
  50. 36a484f Correct typo -- repeat implements *, not +. by Guido van Rossum · 28 years ago
  51. 497aedd Get rid of unused local variable. by Guido van Rossum · 28 years ago
  52. c9fb47e Added delslice and delitem. by Guido van Rossum · 28 years ago
  53. 1720230 Made it palatable for K&R preprocessors. The spam macros don't have by Guido van Rossum · 28 years ago
  54. ec185bd Added hack to get it to compile on AIX. by Guido van Rossum · 28 years ago
  55. 037b940 Operators like __add__ by Guido van Rossum · 28 years ago