1. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
  2. 478d47a Close SF bug 563740. complex() now finds __complex__() in new style classes. by Raymond Hettinger · 22 years ago
  3. aee2d5f Better isinstance error message. by Thomas Heller · 22 years ago
  4. f16951c abstract_get_bases(): Clarify exactly what the return values and by Barry Warsaw · 22 years ago
  5. e8fc640 SF bug 544647. by Guido van Rossum · 22 years ago
  6. 7766091 Whitespace normalization and fold some long lines. by Guido van Rossum · 22 years ago
  7. 0522d98 Fix leak of NotImplemented in previous checkin to PyNumber_Add(). by Jeremy Hylton · 22 years ago
  8. 6ae6a43 Fix for SF bug 516727: MyInt(2) + "3" -> NotImplemented by Jeremy Hylton · 22 years ago
  9. db30ac4 Revert the last odd change to PyNumber_Long: the problem it was trying by Tim Peters · 22 years ago
  10. 2eb0b87 SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects by Guido van Rossum · 22 years ago
  11. b0d71d0 Implement PyObject_DelItemString. Fixes #498915. by Martin v. Löwis · 22 years ago
  12. 64585f6 PyObject_GetItem(), PyObject_SetItem(), PyObject_DelItem(): Fix a few by Guido van Rossum · 23 years ago
  13. 89c3a22 Add PyObject_CheckReadBuffer(), which returns true if its argument by Jeremy Hylton · 23 years ago
  14. 573395a PyFunction_Call() did not check the result of PyObject_Repr() for NULL, and by Fred Drake · 23 years ago
  15. b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 23 years ago
  16. b92cf06 PyObject_CallFunction(), PyObject_CallMethod(): Make sure we do not touch by Fred Drake · 23 years ago
  17. b421b8c Added two new functions to conveniently call functions/methods from C. by Fred Drake · 23 years ago
  18. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
  19. 5c66a26 Make the error message for unsupported operand types cleaner, in by Guido van Rossum · 23 years ago
  20. 6b47129 Fix error checking done by abstract_issubclass and abstract_isinstance. by Neil Schemenauer · 23 years ago
  21. 03290ec Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, by Guido van Rossum · 23 years ago
  22. 89c4264 binary_op1(), ternary_op(): rearrange the code so that slotw is tested by Guido van Rossum · 23 years ago
  23. 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
  24. 84675ac The changes to ternary_op could cause a core dump. Fix this, and by Guido van Rossum · 23 years ago
  25. 4bb1e36 It's a fact: for binary operators, *under certain circumstances*, by Guido van Rossum · 23 years ago
  26. 5560b74 PyObject_CallObject(): this may as well call PyEval_CallObject() by Guido van Rossum · 23 years ago
  27. 8ff70a9 Fix tortured comment -- I must be on drugs today. by Tim Peters · 23 years ago
  28. 4c3a0a3 More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  29. 7a50f25 More for SF bug [#460020] bug or feature: unicode() and subclasses by Tim Peters · 23 years ago
  30. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  31. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  32. 8700b42 PySequence_Check(), PyMapping_Check(): only return true if the by Guido van Rossum · 23 years ago
  33. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  34. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  35. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  36. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  37. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  38. 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 23 years ago
  39. de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 23 years ago
  40. 12d0a6c Fix a tiny and unlikely memory leak. Was there before too, and actually by Tim Peters · 23 years ago
  41. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  42. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  43. 6ad22c4 Plug a memory leak in list(), when appending to the result list. by Tim Peters · 23 years ago
  44. f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 23 years ago
  45. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  46. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  47. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 23 years ago
  48. c318969 Rich comparisons fall-out: by Guido van Rossum · 23 years ago
  49. 5a1f015 Massive changes as per PEP 208. Read it for details. by Neil Schemenauer · 24 years ago
  50. dc9100f Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize the by Thomas Wouters · 24 years ago
  51. f2b332d Cosmetic cleanup by Vladimir. by Thomas Wouters · 24 years ago
  52. bb8be93 Rewritten some pieces of PyNumber_InPlaceAdd() for clarity. by Guido van Rossum · 24 years ago
  53. cadd5b6 Fix grouping, again. This time properly :-) Sorry, guys. by Thomas Wouters · 24 years ago
  54. 04127de Add parens suggested by gcc -Wall. by Guido van Rossum · 24 years ago
  55. 6b958f7 Fix grouping: this is how I intended it, misguided as I was in boolean by Thomas Wouters · 24 years ago
  56. 562f62a Removed compiler warning about wanting explicit grouping around && by Fred Drake · 24 years ago
  57. e289e0b Support for the in-place operations introduced by augmented assignment. Only by Thomas Wouters · 24 years ago
  58. e266e42 Addendum to previous change: now that 'f' is not unconditionally by Thomas Wouters · 24 years ago
  59. bf6cfa5 Add extra check on whether 'tp_as_number' is still non-NULL after coercion, by Thomas Wouters · 24 years ago
  60. 1d75a79 Apply SF patch #101029: call __getitem__ with a proper slice object if there by Thomas Wouters · 24 years ago
  61. c4a19e7 Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. by Guido van Rossum · 24 years ago
  62. a534594 ANSIfication: remove very-old-varargs code, fix function declarations so by Thomas Wouters · 24 years ago
  63. cf5f358 Restore PyXXX_Length() APIs for binary compatibility. by Marc-André Lemburg · 24 years ago
  64. 6253f83 change abstract size functions PySequence_Size &c. by Jeremy Hylton · 24 years ago
  65. 4201b9e type_error(): Added "const" to signature to eliminate warning with -Wall. by Fred Drake · 24 years ago
  66. 7991247 ANSI-fication of the sources. by Fred Drake · 24 years ago
  67. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  68. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  69. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  70. 74042d6 Patch from /F: by Andrew M. Kuchling · 24 years ago
  71. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  72. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  73. 9611e0b Patch by Moshe Zadka: remove the string special case in by Guido van Rossum · 24 years ago
  74. 46c6b20 Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This by Guido van Rossum · 24 years ago
  75. 0f223d2 Allow using long integers as arguments to PyObject_GetItem(), _SetItem(), by Andrew M. Kuchling · 24 years ago
  76. 1991ddc Make multiplying a sequence by a long integer (5L * 'b') legal by Andrew M. Kuchling · 24 years ago
  77. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  78. 031d0e5 Patch by Charles Waldman -- remove unneeded and even harmful test for by Guido van Rossum · 25 years ago
  79. f5046d1 Remove prototype for PyOS_strtol -- Chris Herborth. by Guido van Rossum · 26 years ago
  80. 9d904b9 Believe it or not, Solaris 2.6 strtod() can move the end pointer by Guido van Rossum · 26 years ago
  81. 2130824 Better error messages when a sequence is indexed with a non-integer. by Guido van Rossum · 26 years ago
  82. df3d875 Better error messages when raising ValueError for int and long by Guido van Rossum · 26 years ago
  83. 5dba9e8 Add special case to PySequence_List() so that list() of a list is by Guido van Rossum · 26 years ago
  84. bfc725b Changed PySequence_List() and PySequence_Tuple() to support by Guido van Rossum · 26 years ago
  85. 3b2b347 Fix the tests for various anomalies in the string-to-numbers by Guido van Rossum · 26 years ago
  86. ed6219b Fix a whole bunch of error return NULL that should be return -1. by Guido van Rossum · 26 years ago
  87. 08570de Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred(). by Guido van Rossum · 26 years ago
  88. fa0b6ab Address some gcc -Wall warnings (e.g. include <ctype.h>). by Guido van Rossum · 26 years ago
  89. cea1c8c Completely reformatted, standardizing indentation as well as programming style. by Guido van Rossum · 26 years ago
  90. f7d590c This was the reason a numeric array to a real power was not working. by Guido van Rossum · 26 years ago
  91. a9040ec Renamed a local variable from 'PyCFunction' (which is also a typedef by Guido van Rossum · 27 years ago
  92. e61093c Fix reversed test for failure in PySequence_List() and PySequence_Tuple(). by Guido van Rossum · 27 years ago
  93. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  94. 4669fb4 Several fixes reported by jim F. by Guido van Rossum · 27 years ago
  95. f90edde PySequence_Index(): set exception when object is not found in by Barry Warsaw · 28 years ago
  96. 3c5936a Added missing PySequence_List. by Guido van Rossum · 28 years ago
  97. 052b7e1 Make Py_ReturnNullError() statis as it should be. by Guido van Rossum · 28 years ago
  98. 08ef9d9 Only call sq_length in Sequence_GetItem for negative index. by Guido van Rossum · 28 years ago
  99. 8dbcdd0 correct typo in return variable for PySequence_Index() by Guido van Rossum · 28 years ago
  100. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago