1. 84675ac The changes to ternary_op could cause a core dump. Fix this, and by Guido van Rossum · 23 years ago
  2. 4bb1e36 It's a fact: for binary operators, *under certain circumstances*, by Guido van Rossum · 23 years ago
  3. 5560b74 PyObject_CallObject(): this may as well call PyEval_CallObject() by Guido van Rossum · 23 years ago
  4. 8ff70a9 Fix tortured comment -- I must be on drugs today. by Tim Peters · 23 years ago
  5. 4c3a0a3 More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  6. 7a50f25 More for SF bug [#460020] bug or feature: unicode() and subclasses by Tim Peters · 23 years ago
  7. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  8. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  9. 8700b42 PySequence_Check(), PyMapping_Check(): only return true if the by Guido van Rossum · 23 years ago
  10. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  11. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  12. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  13. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  14. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  15. 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 23 years ago
  16. de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 23 years ago
  17. 12d0a6c Fix a tiny and unlikely memory leak. Was there before too, and actually by Tim Peters · 23 years ago
  18. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  19. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  20. 6ad22c4 Plug a memory leak in list(), when appending to the result list. by Tim Peters · 23 years ago
  21. f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 23 years ago
  22. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  23. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  24. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 23 years ago
  25. c318969 Rich comparisons fall-out: by Guido van Rossum · 23 years ago
  26. 5a1f015 Massive changes as per PEP 208. Read it for details. by Neil Schemenauer · 24 years ago
  27. dc9100f Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize the by Thomas Wouters · 24 years ago
  28. f2b332d Cosmetic cleanup by Vladimir. by Thomas Wouters · 24 years ago
  29. bb8be93 Rewritten some pieces of PyNumber_InPlaceAdd() for clarity. by Guido van Rossum · 24 years ago
  30. cadd5b6 Fix grouping, again. This time properly :-) Sorry, guys. by Thomas Wouters · 24 years ago
  31. 04127de Add parens suggested by gcc -Wall. by Guido van Rossum · 24 years ago
  32. 6b958f7 Fix grouping: this is how I intended it, misguided as I was in boolean by Thomas Wouters · 24 years ago
  33. 562f62a Removed compiler warning about wanting explicit grouping around && by Fred Drake · 24 years ago
  34. e289e0b Support for the in-place operations introduced by augmented assignment. Only by Thomas Wouters · 24 years ago
  35. e266e42 Addendum to previous change: now that 'f' is not unconditionally by Thomas Wouters · 24 years ago
  36. bf6cfa5 Add extra check on whether 'tp_as_number' is still non-NULL after coercion, by Thomas Wouters · 24 years ago
  37. 1d75a79 Apply SF patch #101029: call __getitem__ with a proper slice object if there by Thomas Wouters · 24 years ago
  38. c4a19e7 Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. by Guido van Rossum · 24 years ago
  39. a534594 ANSIfication: remove very-old-varargs code, fix function declarations so by Thomas Wouters · 24 years ago
  40. cf5f358 Restore PyXXX_Length() APIs for binary compatibility. by Marc-André Lemburg · 24 years ago
  41. 6253f83 change abstract size functions PySequence_Size &c. by Jeremy Hylton · 24 years ago
  42. 4201b9e type_error(): Added "const" to signature to eliminate warning with -Wall. by Fred Drake · 24 years ago
  43. 7991247 ANSI-fication of the sources. by Fred Drake · 24 years ago
  44. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  45. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  46. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  47. 74042d6 Patch from /F: by Andrew M. Kuchling · 24 years ago
  48. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  49. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  50. 9611e0b Patch by Moshe Zadka: remove the string special case in by Guido van Rossum · 24 years ago
  51. 46c6b20 Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This by Guido van Rossum · 24 years ago
  52. 0f223d2 Allow using long integers as arguments to PyObject_GetItem(), _SetItem(), by Andrew M. Kuchling · 24 years ago
  53. 1991ddc Make multiplying a sequence by a long integer (5L * 'b') legal by Andrew M. Kuchling · 24 years ago
  54. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  55. 031d0e5 Patch by Charles Waldman -- remove unneeded and even harmful test for by Guido van Rossum · 25 years ago
  56. f5046d1 Remove prototype for PyOS_strtol -- Chris Herborth. by Guido van Rossum · 26 years ago
  57. 9d904b9 Believe it or not, Solaris 2.6 strtod() can move the end pointer by Guido van Rossum · 26 years ago
  58. 2130824 Better error messages when a sequence is indexed with a non-integer. by Guido van Rossum · 26 years ago
  59. df3d875 Better error messages when raising ValueError for int and long by Guido van Rossum · 26 years ago
  60. 5dba9e8 Add special case to PySequence_List() so that list() of a list is by Guido van Rossum · 26 years ago
  61. bfc725b Changed PySequence_List() and PySequence_Tuple() to support by Guido van Rossum · 26 years ago
  62. 3b2b347 Fix the tests for various anomalies in the string-to-numbers by Guido van Rossum · 26 years ago
  63. ed6219b Fix a whole bunch of error return NULL that should be return -1. by Guido van Rossum · 26 years ago
  64. 08570de Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred(). by Guido van Rossum · 26 years ago
  65. fa0b6ab Address some gcc -Wall warnings (e.g. include <ctype.h>). by Guido van Rossum · 26 years ago
  66. cea1c8c Completely reformatted, standardizing indentation as well as programming style. by Guido van Rossum · 26 years ago
  67. f7d590c This was the reason a numeric array to a real power was not working. by Guido van Rossum · 26 years ago
  68. a9040ec Renamed a local variable from 'PyCFunction' (which is also a typedef by Guido van Rossum · 27 years ago
  69. e61093c Fix reversed test for failure in PySequence_List() and PySequence_Tuple(). by Guido van Rossum · 27 years ago
  70. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  71. 4669fb4 Several fixes reported by jim F. by Guido van Rossum · 27 years ago
  72. f90edde PySequence_Index(): set exception when object is not found in by Barry Warsaw · 28 years ago
  73. 3c5936a Added missing PySequence_List. by Guido van Rossum · 28 years ago
  74. 052b7e1 Make Py_ReturnNullError() statis as it should be. by Guido van Rossum · 28 years ago
  75. 08ef9d9 Only call sq_length in Sequence_GetItem for negative index. by Guido van Rossum · 28 years ago
  76. 8dbcdd0 correct typo in return variable for PySequence_Index() by Guido van Rossum · 28 years ago
  77. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  78. 336c699 Fix subtle bug detected by Jim F. by Guido van Rossum · 28 years ago
  79. 6cdc6f4 Added PyObject_DelItem and PySequence_Del{Item,Slice}. by Guido van Rossum · 28 years ago
  80. 8ba873b adapted to K&R C by Guido van Rossum · 29 years ago
  81. e15dee5 Generic Abstract Object Interface by Guido van Rossum · 29 years ago