1. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
  2. 0edc7a0 Fix: by Michael W. Hudson · 19 years ago
  3. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  4. 193814c Small boost to PySequence_Fast(). Lists build faster than tuples for by Raymond Hettinger · 20 years ago
  5. e6bdb37 Add missing decref. by Raymond Hettinger · 20 years ago
  6. 4d01259 SF bug #1085744: Performance issues with PySequence_Tuple() by Raymond Hettinger · 20 years ago
  7. 1be1a79 SF bug #1030557: PyMapping_Check crashes when argument is NULL by Raymond Hettinger · 20 years ago
  8. 3a313e3 Check the type of values returned by __int__, __float__, __long__, by Neil Schemenauer · 20 years ago
  9. 10c6606 SF bug #952866: "can't multiply sequence *by* non-int" by Raymond Hettinger · 20 years ago
  10. ed9192e Improve previous checkin to use a slot check instead of equivalent by Raymond Hettinger · 20 years ago
  11. e2eda60 Improve accuracy of sequence and mapping checks. by Raymond Hettinger · 20 years ago
  12. 5f112eb recursive_isinstance(), recursive_issubclass(): New code here returned by Tim Peters · 20 years ago
  13. 4f65331 Limit the nesting depth of a tuple passed as the second argument to by Brett Cannon · 20 years ago
  14. 969d8c0 Add missing decref by Raymond Hettinger · 20 years ago
  15. 8ca92ae Eliminate a big block of duplicate code in PySequence_List() by by Raymond Hettinger · 20 years ago
  16. 2fb7029 SF Patch #871704: Py_SequenceFast can mask errors by Raymond Hettinger · 20 years ago
  17. b86269d Apply pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
  18. 7832cd6 Apply tuple/list pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
  19. 98779e0 Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItem by Raymond Hettinger · 21 years ago
  20. 8049dde Removed duplicate test from inner loop. by Raymond Hettinger · 21 years ago
  21. 6921eca Make PyNumber_Check() a bit more careful, since all sorts of things by Guido van Rossum · 21 years ago
  22. e5b130b Add missing cast in previous fix. by Guido van Rossum · 21 years ago
  23. 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 21 years ago
  24. f6c9ba8 Fold long lines. by Guido van Rossum · 21 years ago
  25. a3a243e Merge to trunk from release branch: by Guido van Rossum · 22 years ago
  26. d4b0fea Always try nb_* slots before trying sq_concat, sq_inplace_concat, sq_repeat, by Neil Schemenauer · 22 years ago
  27. 7e5c6a0 Change issubclass() so that recursive tuples (directly or indirectly by Walter Dörwald · 22 years ago
  28. d9a6ad3 Enhance issubclass() and PyObject_IsSubclass() so that a tuple is by Walter Dörwald · 22 years ago
  29. c2e095f Fix typo in abstract.c which caused __rpow__ to not be invoked. by Raymond Hettinger · 22 years ago
  30. b808c5c Simplify use of NB_BINOP and NB_TERNOP by making them do the pointer by Neil Schemenauer · 22 years ago
  31. d46fbc3 Remove special handling of str and unicode in PyNumber_InPlaceRemainder. They by Neil Schemenauer · 22 years ago
  32. 26db587 str and unicode objects now have a __mod__ slot so don't special case them in by Neil Schemenauer · 22 years ago
  33. 2801fe1 Use PyList_CheckExact and PyTuple_CheckExact for checking whether by Michael W. Hudson · 22 years ago
  34. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  35. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
  36. 478d47a Close SF bug 563740. complex() now finds __complex__() in new style classes. by Raymond Hettinger · 22 years ago
  37. aee2d5f Better isinstance error message. by Thomas Heller · 22 years ago
  38. f16951c abstract_get_bases(): Clarify exactly what the return values and by Barry Warsaw · 22 years ago
  39. e8fc640 SF bug 544647. by Guido van Rossum · 22 years ago
  40. 7766091 Whitespace normalization and fold some long lines. by Guido van Rossum · 22 years ago
  41. 0522d98 Fix leak of NotImplemented in previous checkin to PyNumber_Add(). by Jeremy Hylton · 22 years ago
  42. 6ae6a43 Fix for SF bug 516727: MyInt(2) + "3" -> NotImplemented by Jeremy Hylton · 22 years ago
  43. db30ac4 Revert the last odd change to PyNumber_Long: the problem it was trying by Tim Peters · 22 years ago
  44. 2eb0b87 SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects by Guido van Rossum · 22 years ago
  45. b0d71d0 Implement PyObject_DelItemString. Fixes #498915. by Martin v. Löwis · 22 years ago
  46. 64585f6 PyObject_GetItem(), PyObject_SetItem(), PyObject_DelItem(): Fix a few by Guido van Rossum · 23 years ago
  47. 89c3a22 Add PyObject_CheckReadBuffer(), which returns true if its argument by Jeremy Hylton · 23 years ago
  48. 573395a PyFunction_Call() did not check the result of PyObject_Repr() for NULL, and by Fred Drake · 23 years ago
  49. b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 23 years ago
  50. b92cf06 PyObject_CallFunction(), PyObject_CallMethod(): Make sure we do not touch by Fred Drake · 23 years ago
  51. b421b8c Added two new functions to conveniently call functions/methods from C. by Fred Drake · 23 years ago
  52. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
  53. 5c66a26 Make the error message for unsupported operand types cleaner, in by Guido van Rossum · 23 years ago
  54. 6b47129 Fix error checking done by abstract_issubclass and abstract_isinstance. by Neil Schemenauer · 23 years ago
  55. 03290ec Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, by Guido van Rossum · 23 years ago
  56. 89c4264 binary_op1(), ternary_op(): rearrange the code so that slotw is tested by Guido van Rossum · 23 years ago
  57. 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
  58. 84675ac The changes to ternary_op could cause a core dump. Fix this, and by Guido van Rossum · 23 years ago
  59. 4bb1e36 It's a fact: for binary operators, *under certain circumstances*, by Guido van Rossum · 23 years ago
  60. 5560b74 PyObject_CallObject(): this may as well call PyEval_CallObject() by Guido van Rossum · 23 years ago
  61. 8ff70a9 Fix tortured comment -- I must be on drugs today. by Tim Peters · 23 years ago
  62. 4c3a0a3 More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  63. 7a50f25 More for SF bug [#460020] bug or feature: unicode() and subclasses by Tim Peters · 23 years ago
  64. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  65. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  66. 8700b42 PySequence_Check(), PyMapping_Check(): only return true if the by Guido van Rossum · 23 years ago
  67. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  68. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  69. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  70. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  71. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  72. 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 23 years ago
  73. de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 23 years ago
  74. 12d0a6c Fix a tiny and unlikely memory leak. Was there before too, and actually by Tim Peters · 23 years ago
  75. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  76. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  77. 6ad22c4 Plug a memory leak in list(), when appending to the result list. by Tim Peters · 23 years ago
  78. f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 23 years ago
  79. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  80. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  81. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 23 years ago
  82. c318969 Rich comparisons fall-out: by Guido van Rossum · 23 years ago
  83. 5a1f015 Massive changes as per PEP 208. Read it for details. by Neil Schemenauer · 24 years ago
  84. dc9100f Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize the by Thomas Wouters · 24 years ago
  85. f2b332d Cosmetic cleanup by Vladimir. by Thomas Wouters · 24 years ago
  86. bb8be93 Rewritten some pieces of PyNumber_InPlaceAdd() for clarity. by Guido van Rossum · 24 years ago
  87. cadd5b6 Fix grouping, again. This time properly :-) Sorry, guys. by Thomas Wouters · 24 years ago
  88. 04127de Add parens suggested by gcc -Wall. by Guido van Rossum · 24 years ago
  89. 6b958f7 Fix grouping: this is how I intended it, misguided as I was in boolean by Thomas Wouters · 24 years ago
  90. 562f62a Removed compiler warning about wanting explicit grouping around && by Fred Drake · 24 years ago
  91. e289e0b Support for the in-place operations introduced by augmented assignment. Only by Thomas Wouters · 24 years ago
  92. e266e42 Addendum to previous change: now that 'f' is not unconditionally by Thomas Wouters · 24 years ago
  93. bf6cfa5 Add extra check on whether 'tp_as_number' is still non-NULL after coercion, by Thomas Wouters · 24 years ago
  94. 1d75a79 Apply SF patch #101029: call __getitem__ with a proper slice object if there by Thomas Wouters · 24 years ago
  95. c4a19e7 Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. by Guido van Rossum · 24 years ago
  96. a534594 ANSIfication: remove very-old-varargs code, fix function declarations so by Thomas Wouters · 24 years ago
  97. cf5f358 Restore PyXXX_Length() APIs for binary compatibility. by Marc-André Lemburg · 24 years ago
  98. 6253f83 change abstract size functions PySequence_Size &c. by Jeremy Hylton · 24 years ago
  99. 4201b9e type_error(): Added "const" to signature to eliminate warning with -Wall. by Fred Drake · 24 years ago
  100. 7991247 ANSI-fication of the sources. by Fred Drake · 24 years ago