1. b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 16 years ago
  2. a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 16 years ago
  3. 0668c62 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  4. f91d46a Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by Martin v. Löwis · 16 years ago
  5. 3781aef Finish backporting new buffer API to Python 2.6. Left to do: memoryview object and structmodule. But, these need to be finished in Python 3.0 first. No objects support the new buffer API in Python 2.6 as of yet, and except for the memoryview object, I don't think they will. by Travis E. Oliphant · 17 years ago
  6. 33451d8 Add necessary headers to back-port new buffer protocol to Python 2.6 by Travis E. Oliphant · 17 years ago
  7. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  8. dd47aae Forgot to modify header file in r60707. by Eric Smith · 17 years ago
  9. a26cf9b Make int() and long() fall back to __trunc__(). See issue 2002. by Jeffrey Yasskin · 17 years ago
  10. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  11. 4e2f714 Fix Issue 1045. by Raymond Hettinger · 17 years ago
  12. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  13. 98f0d14 Patch #1580872: Remove duplicate declaration of PyCallable_Check. by Martin v. Löwis · 18 years ago
  14. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  15. 54e964d C++ compilation cleanup: Migrate declaration of by Skip Montanaro · 18 years ago
  16. 5cb6936 Make Py_BuildValue, PyObject_CallFunction and by Martin v. Löwis · 18 years ago
  17. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  18. 1fc4b77 Change some sequnce APIs to use Py_ssize_t. by Neal Norwitz · 19 years ago
  19. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  20. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  21. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  22. 42bec93 Make PySequence_Fast_ITEMS public. (Thanks Skip.) by Raymond Hettinger · 21 years ago
  23. c1e4f9d Use a new macro, PySequence_Fast_ITEMS to factor out code common to by Raymond Hettinger · 21 years ago
  24. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  25. b566289 Fix broken API descriptions in comments. by Fred Drake · 21 years ago
  26. a72e2f9 Fix spelling and grammar. by Raymond Hettinger · 22 years ago
  27. 3131679 James Henstridge pointed out a misleading comment. by Michael W. Hudson · 22 years ago
  28. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  29. 01f94bd Patch #552433: Special-case tuples. Avoid sub-type checking for lists. by Martin v. Löwis · 22 years ago
  30. b0d71d0 Implement PyObject_DelItemString. Fixes #498915. by Martin v. Löwis · 23 years ago
  31. 7c7ee5f Fix SF bug [ #476852 ] Some bad macros in abstract.h by Jeremy Hylton · 23 years ago
  32. 89c3a22 Add PyObject_CheckReadBuffer(), which returns true if its argument by Jeremy Hylton · 23 years ago
  33. b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 23 years ago
  34. b421b8c Added two new functions to conveniently call functions/methods from C. by Fred Drake · 23 years ago
  35. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
  36. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  37. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  38. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  39. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  40. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  41. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  42. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  43. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  44. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 24 years ago
  45. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 24 years ago
  46. dd8dbdb The real suport for augmented assignment: new opcodes, new PyNumber and by Thomas Wouters · 24 years ago
  47. c4a19e7 Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. by Guido van Rossum · 24 years ago
  48. cf5f358 Restore PyXXX_Length() APIs for binary compatibility. by Marc-André Lemburg · 24 years ago
  49. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  50. fa521f1 fix PyXXX_Length macros as suggested by Fred by Jeremy Hylton · 24 years ago
  51. 6253f83 change abstract size functions PySequence_Size &c. by Jeremy Hylton · 24 years ago
  52. ea9cb5a ANSI-fication and Py_PROTO extermination. by Fred Drake · 24 years ago
  53. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  54. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  55. 74042d6 Patch from /F: by Andrew M. Kuchling · 24 years ago
  56. fd9eed3 Marc-Andre Lemburg: added declarations for PyObject_AsCharBuffer, by Guido van Rossum · 25 years ago
  57. 8368453 Add DLL level b/w compat for PySequence_In and PyEval_CallObject by Guido van Rossum · 26 years ago
  58. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
  59. f1536db Move an indented #define to column 1. by Guido van Rossum · 26 years ago
  60. 44e4d5a Renamed PySequence_In() to PySequence_Contains(). by Guido van Rossum · 26 years ago
  61. c3d3f96 Add PyObject_Not(). by Guido van Rossum · 26 years ago
  62. f39fc43 A few comment alignment and clarifications. by Guido van Rossum · 28 years ago
  63. 1ca407f Fix the comments for bitwise and/or. by Guido van Rossum · 28 years ago
  64. 2adf06b Added missing for PySequence_List. by Guido van Rossum · 28 years ago
  65. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  66. a25e5e9 PyMapping_DelItem[String] are actually macros. by Guido van Rossum · 28 years ago
  67. ed227f0 Correctly document PyNumber_Coerce. by Guido van Rossum · 28 years ago
  68. 6cdc6f4 Added PyObject_DelItem and PySequence_Del{Item,Slice}. by Guido van Rossum · 28 years ago
  69. 578cedd Typo: PySequence_Lenth -> PySequence_Length. by Guido van Rossum · 28 years ago
  70. 4f4ce68 Added prototype + doc for PySequence_Length() by Guido van Rossum · 28 years ago
  71. 8ca687a use Py_PROTO macro by Guido van Rossum · 29 years ago
  72. a827537 Generic Abstract Object Interface by Guido van Rossum · 29 years ago