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