1. cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 17 years ago
  2. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  3. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  4. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  5. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  6. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  7. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  8. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  9. fe55464 Whitespace changes. Also remove apply from a few comments by Neal Norwitz · 18 years ago
  10. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  11. 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 18 years ago
  12. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  13. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  14. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  15. 42bec93 Make PySequence_Fast_ITEMS public. (Thanks Skip.) by Raymond Hettinger · 20 years ago
  16. c1e4f9d Use a new macro, PySequence_Fast_ITEMS to factor out code common to by Raymond Hettinger · 20 years ago
  17. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  18. b566289 Fix broken API descriptions in comments. by Fred Drake · 21 years ago
  19. a72e2f9 Fix spelling and grammar. by Raymond Hettinger · 21 years ago
  20. 3131679 James Henstridge pointed out a misleading comment. by Michael W. Hudson · 22 years ago
  21. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  22. 01f94bd Patch #552433: Special-case tuples. Avoid sub-type checking for lists. by Martin v. Löwis · 22 years ago
  23. b0d71d0 Implement PyObject_DelItemString. Fixes #498915. by Martin v. Löwis · 23 years ago
  24. 7c7ee5f Fix SF bug [ #476852 ] Some bad macros in abstract.h by Jeremy Hylton · 23 years ago
  25. 89c3a22 Add PyObject_CheckReadBuffer(), which returns true if its argument by Jeremy Hylton · 23 years ago
  26. b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 23 years ago
  27. b421b8c Added two new functions to conveniently call functions/methods from C. by Fred Drake · 23 years ago
  28. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
  29. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  30. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  31. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  32. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  33. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  34. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  35. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  36. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  37. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 23 years ago
  38. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 23 years ago
  39. dd8dbdb The real suport for augmented assignment: new opcodes, new PyNumber and by Thomas Wouters · 24 years ago
  40. c4a19e7 Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. by Guido van Rossum · 24 years ago
  41. cf5f358 Restore PyXXX_Length() APIs for binary compatibility. by Marc-André Lemburg · 24 years ago
  42. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  43. fa521f1 fix PyXXX_Length macros as suggested by Fred by Jeremy Hylton · 24 years ago
  44. 6253f83 change abstract size functions PySequence_Size &c. by Jeremy Hylton · 24 years ago
  45. ea9cb5a ANSI-fication and Py_PROTO extermination. by Fred Drake · 24 years ago
  46. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  47. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  48. 74042d6 Patch from /F: by Andrew M. Kuchling · 24 years ago
  49. fd9eed3 Marc-Andre Lemburg: added declarations for PyObject_AsCharBuffer, by Guido van Rossum · 24 years ago
  50. 8368453 Add DLL level b/w compat for PySequence_In and PyEval_CallObject by Guido van Rossum · 25 years ago
  51. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
  52. f1536db Move an indented #define to column 1. by Guido van Rossum · 26 years ago
  53. 44e4d5a Renamed PySequence_In() to PySequence_Contains(). by Guido van Rossum · 26 years ago
  54. c3d3f96 Add PyObject_Not(). by Guido van Rossum · 26 years ago
  55. f39fc43 A few comment alignment and clarifications. by Guido van Rossum · 27 years ago
  56. 1ca407f Fix the comments for bitwise and/or. by Guido van Rossum · 27 years ago
  57. 2adf06b Added missing for PySequence_List. by Guido van Rossum · 28 years ago
  58. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  59. a25e5e9 PyMapping_DelItem[String] are actually macros. by Guido van Rossum · 28 years ago
  60. ed227f0 Correctly document PyNumber_Coerce. by Guido van Rossum · 28 years ago
  61. 6cdc6f4 Added PyObject_DelItem and PySequence_Del{Item,Slice}. by Guido van Rossum · 28 years ago
  62. 578cedd Typo: PySequence_Lenth -> PySequence_Length. by Guido van Rossum · 28 years ago
  63. 4f4ce68 Added prototype + doc for PySequence_Length() by Guido van Rossum · 28 years ago
  64. 8ca687a use Py_PROTO macro by Guido van Rossum · 29 years ago
  65. a827537 Generic Abstract Object Interface by Guido van Rossum · 29 years ago