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