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. 9bea3ab Ouch. The wrapper for __rpow__ was the same as for __pow__, resulting by Guido van Rossum · 23 years ago
  4. 2ed6bf8 Merge branch changes (coercion, rich comparisons) into trunk. by Guido van Rossum · 23 years ago
  5. 874f15a add_operators(): the __floordiv__ and __truediv__ descriptors (and by Guido van Rossum · 23 years ago
  6. 3926a63 - Provisional support for pickling new-style objects. (*) by Guido van Rossum · 23 years ago
  7. a4cb788 Change repr() of a new-style class to say <class 'ClassName'> rather by Guido van Rossum · 23 years ago
  8. 5c294fb Make __class__ assignment possible, when the object structures are the by Guido van Rossum · 23 years ago
  9. 66c1a52 Make properties discoverable from Python: by Tim Peters · 23 years ago
  10. 3d45d8f Another comparison patch-up: comparing a type with a dynamic metatype by Guido van Rossum · 23 years ago
  11. 2205642 Do the same thing to complex that I did to str: the rich comparison by Guido van Rossum · 23 years ago
  12. bb77e68 Change string comparison so that it applies even when one (or both) by Guido van Rossum · 23 years ago
  13. ff0e6d6 Fix the baffler that Tim reported: sometimes the repr() of an object by Guido van Rossum · 23 years ago
  14. 2c9aa5e Generalize file.writelines() to allow iterable objects. by Tim Peters · 23 years ago
  15. 19c1cd5 Add the __getattr__ hook back. The rules are now: by Guido van Rossum · 23 years ago
  16. 867a8d2 Change the name of the __getattr__ special method for new-style by Guido van Rossum · 23 years ago
  17. ad9744a Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead of \\. by Guido van Rossum · 23 years ago
  18. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  19. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  20. 3508e30 Fix Unicode .join() method to raise a TypeError for sequence by Marc-André Lemburg · 23 years ago
  21. dd4d1c4 _PyObject_GetDictPtr(): when the offset is negative, always align -- by Guido van Rossum · 23 years ago
  22. 6871f6a Implement the changes proposed in patch #413333. unicode(obj) now by Marc-André Lemburg · 23 years ago
  23. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  24. efc3a3a SF bug [#463093] File methods need doc strings. Now they don't. by Tim Peters · 23 years ago
  25. 2777c02 Patch #462849: Pass Unicode objects to file's .write method. by Martin v. Löwis · 23 years ago
  26. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  27. 6380596 complex_coerce(): add explicit PyComplex_Check() test. Previously, by Guido van Rossum · 23 years ago
  28. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  29. cf95f9c Properly repr classes without module names. by Martin v. Löwis · 23 years ago
  30. ceccae5 wrap_cmpfunc(): added a safety check for the __cmp__ wrapper. We can by Guido van Rossum · 23 years ago
  31. f0b35e1 Redo the PyMethod attributes using a dir()-friendly approach, creating by Guido van Rossum · 23 years ago
  32. 26f68f5 type_new(): Didn't compile anymore, due to change in struct memberlist by Tim Peters · 23 years ago
  33. d9d1d4a Rewrite function attributes to use the generic routines properly. by Guido van Rossum · 23 years ago
  34. 305b585 PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist, by Tim Peters · 23 years ago
  35. bc7e863 merge_class_dict(): Clear the error if __bases__ doesn't exist. by Tim Peters · 23 years ago
  36. 7e35d57 A fix for SF bug #461546 (bug in long_mul). by Guido van Rossum · 23 years ago
  37. a8c60f4 tp_new_wrapper(): A subtle change in the check for safe use. by Guido van Rossum · 23 years ago
  38. f21c6be Add call_maybe(): a variant of call_method() that returns by Guido van Rossum · 23 years ago
  39. 717ce00 call_method(): by Guido van Rossum · 23 years ago
  40. 5560b74 PyObject_CallObject(): this may as well call PyEval_CallObject() by Guido van Rossum · 23 years ago
  41. 5f5512d _PyObject_Dump(): print the type of the object. This is by far the by Guido van Rossum · 23 years ago
  42. 4441001 The end of [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  43. 0ab085c Changed the dict implementation to take "string shortcuts" only when by Tim Peters · 23 years ago
  44. 742dfd6 Get rid of builtin_open() entirely (the C code and docstring, not the by Tim Peters · 23 years ago
  45. 8fa4567 Now that file objects are subclassable, you can get at the file constructor by Tim Peters · 23 years ago
  46. 3f996e7 type_call(): Change in policy. The keyword args (if any) are now passed by Tim Peters · 23 years ago
  47. bafedec based upon a suggestion in c.l.py, this slight expansion of the by Skip Montanaro · 23 years ago
  48. 59c9a64 SF bug [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  49. 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  50. 111f609 If interning an instance of a string subclass, intern a real string object by Tim Peters · 23 years ago
  51. af90b3e str_subtype_new, unicode_subtype_new: by Tim Peters · 23 years ago
  52. 7a29bd5 More on bug 460020: disable many optimizations of unicode subclasses. by Tim Peters · 23 years ago
  53. 8fa5dd0 More bug 460020: lots of string optimizations inhibited for string by Tim Peters · 23 years ago
  54. 40c397d long_invert(): tiny speed and space optimization. by Tim Peters · 23 years ago
  55. 69c2de3 More bug 460020. Disable a number of long optimizations for long subclasses. by Tim Peters · 23 years ago
  56. 0280cf7 More bug 460020: when F is a subclass of float, disable the unary plus by Tim Peters · 23 years ago
  57. 73a1dfe More bug 460020. When I is a subclass of int, disable the +I(whatever), by Tim Peters · 23 years ago
  58. 7b07a41 The endless 460020 bug. by Tim Peters · 23 years ago
  59. dea6ef9 Replace a few places where X->ob_type was compared to &PyXXX_Type with by Guido van Rossum · 23 years ago
  60. 78e0fc7 Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  61. 0ebeb58 PyUnicode_FromEncodedObject(): Repair memory leak in an error case. by Tim Peters · 23 years ago
  62. 5a49ade More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  63. 8ff70a9 Fix tortured comment -- I must be on drugs today. by Tim Peters · 23 years ago
  64. 4c3a0a3 More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  65. 7a50f25 More for SF bug [#460020] bug or feature: unicode() and subclasses by Tim Peters · 23 years ago
  66. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  67. 8b4e43e _portable_fseek(): by Guido van Rossum · 23 years ago
  68. 8dbd3d8 PyObject_Dir(): by Guido van Rossum · 23 years ago
  69. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  70. 28d80b1 PyClass_New(): put the extended Don Beaudry hook back in. When one of by Guido van Rossum · 23 years ago
  71. 8700b42 PySequence_Check(), PyMapping_Check(): only return true if the by Guido van Rossum · 23 years ago
  72. 9478d07 PyType_IsSubtype(): test tp_flags for HAVE_CLASS bit before accessing by Guido van Rossum · 23 years ago
  73. e56ed9b long_true_divide: reliably force underflow to 0 when the denominator by Tim Peters · 23 years ago
  74. 8bce4ac Rename 'getset' to 'property'. by Guido van Rossum · 23 years ago
  75. 387c547 Revert parts of patch #453627, documenting the resulting test failures instead. by Martin v. Löwis · 23 years ago
  76. 6e13a56 Enable large file support on Win32 systems. by Tim Peters · 23 years ago
  77. 97f4a33 Better error msg for 3-arg pow with a float argument. by Tim Peters · 23 years ago
  78. b479dc5 Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back. by Guido van Rossum · 23 years ago
  79. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 23 years ago
  80. b855216 Changes to automatically enable large file support on some systems. by Guido van Rossum · 23 years ago
  81. 655c955 Patch #453627: Define the following macros when compiling on a UnixWare 7.x system: by Martin v. Löwis · 23 years ago
  82. 4c483c4 Make the error msgs in our pow() implementations consistent. by Tim Peters · 23 years ago
  83. 57f282a Try to recover from that glibc's ldexp apparently doesn't set errno on by Tim Peters · 23 years ago
  84. 7eea37e At Guido's suggestion, here's a new C API function, PyObject_Dir(), like by Tim Peters · 23 years ago
  85. e2a6000 Change long/long true division to return as many good bits as it can; by Tim Peters · 23 years ago
  86. 9c1d7fd Move int_true_divide next to the other division routines. by Tim Peters · 23 years ago
  87. 20dab9f Move long_true_divide next to the other division routines (for clarity!). by Tim Peters · 23 years ago
  88. 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 23 years ago
  89. 1832de4 PEP 238 documented -Qwarn as warning only for classic int or long by Guido van Rossum · 23 years ago
  90. a1c1b0f Introduce new private API function _PyLong_AsScaledDouble. Not used yet, by Tim Peters · 23 years ago
  91. 32f453e New restriction on pow(x, y, z): If z is not None, x and y must be of by Tim Peters · 23 years ago
  92. b95ec09 Repair typo in comment. by Tim Peters · 23 years ago
  93. 25786c0 Make dictionary() a real constructor. Accepts at most one argument, "a by Tim Peters · 23 years ago
  94. 1b8ca0d Rewrite the tuple() docstring to parallel the list() docstring. by Tim Peters · 23 years ago
  95. 9577761 Repair apparent cut'n'pasteo in tuple() docstring. by Tim Peters · 23 years ago
  96. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  97. 29d55a3 Fix a memory leak in str_subtype_new(). (All the other by Guido van Rossum · 23 years ago
  98. 41eb14d Give 'super' a decent repr(), and readonly attributes to access the by Guido van Rossum · 23 years ago
  99. 21922aa PyObject_Repr(): add missing ">" back at end of format string: "<%s by Guido van Rossum · 23 years ago
  100. 017cb2c Squash new compiler wng. by Tim Peters · 23 years ago