1. bafedec based upon a suggestion in c.l.py, this slight expansion of the by Skip Montanaro · 23 years ago
  2. 59c9a64 SF bug [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  3. 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  4. 111f609 If interning an instance of a string subclass, intern a real string object by Tim Peters · 23 years ago
  5. af90b3e str_subtype_new, unicode_subtype_new: by Tim Peters · 23 years ago
  6. 7a29bd5 More on bug 460020: disable many optimizations of unicode subclasses. by Tim Peters · 23 years ago
  7. 8fa5dd0 More bug 460020: lots of string optimizations inhibited for string by Tim Peters · 23 years ago
  8. 40c397d long_invert(): tiny speed and space optimization. by Tim Peters · 23 years ago
  9. 69c2de3 More bug 460020. Disable a number of long optimizations for long subclasses. by Tim Peters · 23 years ago
  10. 0280cf7 More bug 460020: when F is a subclass of float, disable the unary plus by Tim Peters · 23 years ago
  11. 73a1dfe More bug 460020. When I is a subclass of int, disable the +I(whatever), by Tim Peters · 23 years ago
  12. 7b07a41 The endless 460020 bug. by Tim Peters · 23 years ago
  13. dea6ef9 Replace a few places where X->ob_type was compared to &PyXXX_Type with by Guido van Rossum · 23 years ago
  14. 78e0fc7 Possibly the end of SF [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  15. 0ebeb58 PyUnicode_FromEncodedObject(): Repair memory leak in an error case. by Tim Peters · 23 years ago
  16. 5a49ade More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  17. 8ff70a9 Fix tortured comment -- I must be on drugs today. by Tim Peters · 23 years ago
  18. 4c3a0a3 More on SF bug [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  19. 7a50f25 More for SF bug [#460020] bug or feature: unicode() and subclasses by Tim Peters · 23 years ago
  20. 64b5ce3 SF bug #460020: bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  21. 8b4e43e _portable_fseek(): by Guido van Rossum · 23 years ago
  22. 8dbd3d8 PyObject_Dir(): by Guido van Rossum · 23 years ago
  23. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  24. 28d80b1 PyClass_New(): put the extended Don Beaudry hook back in. When one of by Guido van Rossum · 23 years ago
  25. 8700b42 PySequence_Check(), PyMapping_Check(): only return true if the by Guido van Rossum · 23 years ago
  26. 9478d07 PyType_IsSubtype(): test tp_flags for HAVE_CLASS bit before accessing by Guido van Rossum · 23 years ago
  27. e56ed9b long_true_divide: reliably force underflow to 0 when the denominator by Tim Peters · 23 years ago
  28. 8bce4ac Rename 'getset' to 'property'. by Guido van Rossum · 23 years ago
  29. 387c547 Revert parts of patch #453627, documenting the resulting test failures instead. by Martin v. Löwis · 23 years ago
  30. 6e13a56 Enable large file support on Win32 systems. by Tim Peters · 23 years ago
  31. 97f4a33 Better error msg for 3-arg pow with a float argument. by Tim Peters · 23 years ago
  32. b479dc5 Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back. by Guido van Rossum · 23 years ago
  33. a40c793 Rework the way we try to check for libm overflow, given that C99 no longer by Tim Peters · 23 years ago
  34. b855216 Changes to automatically enable large file support on some systems. by Guido van Rossum · 23 years ago
  35. 655c955 Patch #453627: Define the following macros when compiling on a UnixWare 7.x system: by Martin v. Löwis · 23 years ago
  36. 4c483c4 Make the error msgs in our pow() implementations consistent. by Tim Peters · 23 years ago
  37. 57f282a Try to recover from that glibc's ldexp apparently doesn't set errno on by Tim Peters · 23 years ago
  38. 7eea37e At Guido's suggestion, here's a new C API function, PyObject_Dir(), like by Tim Peters · 23 years ago
  39. e2a6000 Change long/long true division to return as many good bits as it can; by Tim Peters · 23 years ago
  40. 9c1d7fd Move int_true_divide next to the other division routines. by Tim Peters · 23 years ago
  41. 20dab9f Move long_true_divide next to the other division routines (for clarity!). by Tim Peters · 23 years ago
  42. 9fffa3e Raise OverflowError when appropriate on long->float conversion. Most of by Tim Peters · 23 years ago
  43. 1832de4 PEP 238 documented -Qwarn as warning only for classic int or long by Guido van Rossum · 23 years ago
  44. a1c1b0f Introduce new private API function _PyLong_AsScaledDouble. Not used yet, by Tim Peters · 23 years ago
  45. 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
  46. b95ec09 Repair typo in comment. by Tim Peters · 23 years ago
  47. 25786c0 Make dictionary() a real constructor. Accepts at most one argument, "a by Tim Peters · 23 years ago
  48. 1b8ca0d Rewrite the tuple() docstring to parallel the list() docstring. by Tim Peters · 23 years ago
  49. 9577761 Repair apparent cut'n'pasteo in tuple() docstring. by Tim Peters · 23 years ago
  50. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  51. 29d55a3 Fix a memory leak in str_subtype_new(). (All the other by Guido van Rossum · 23 years ago
  52. 41eb14d Give 'super' a decent repr(), and readonly attributes to access the by Guido van Rossum · 23 years ago
  53. 21922aa PyObject_Repr(): add missing ">" back at end of format string: "<%s by Guido van Rossum · 23 years ago
  54. 017cb2c Squash new compiler wng. by Tim Peters · 23 years ago
  55. 6fb3fde Pytype_GenericAlloc(): round up size so we zap all four bytes of the by Guido van Rossum · 23 years ago
  56. 4b8c0f6 More stuff discovered while writing the simplest of testcases: by Guido van Rossum · 23 years ago
  57. 13228a6 Ah, the joy of writing test cases... by Guido van Rossum · 23 years ago
  58. 38b88c2 Removed some unreachable break statements to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  59. 52e0717 Give the internal immutable list type .extend and .pop methods (they by Tim Peters · 23 years ago
  60. c414187 Safety measures now that str and tuple are subclassable: by Guido van Rossum · 23 years ago
  61. 31bcff8 Make 'super' subclassable. (Not sure how useful this is yet. :-) by Guido van Rossum · 23 years ago
  62. e023fe0 Make unicode subclassable. by Guido van Rossum · 23 years ago
  63. ae960af Make str and tuple types subclassable. by Guido van Rossum · 23 years ago
  64. 147b13c Make getset subclassable. by Guido van Rossum · 23 years ago
  65. d93dce1 Fix typo: double semicolons. by Guido van Rossum · 23 years ago
  66. deb77e8 Squash new compiler wng in debug build. by Tim Peters · 23 years ago
  67. c806c88 Use new GC API. Remove usage of BASICSIZE macros. by Neil Schemenauer · 23 years ago
  68. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  69. fd34369 Remove GC related code. It lives in gcmodule now. by Neil Schemenauer · 23 years ago
  70. 4f4817f Make frames a PyVarObject. Use new GC API. by Neil Schemenauer · 23 years ago
  71. bef1417 Make int, long and float subclassable. by Guido van Rossum · 23 years ago
  72. e705ef1 Fix super() so that it is usable for static methods (like __new__) as well. by Guido van Rossum · 23 years ago
  73. 5592e4d Fix a typo in SLOT0 macro for the declaration of cache_str. by Guido van Rossum · 23 years ago
  74. 2730b13 Finish the previous checkin: also avoid getattr when calling the method by Guido van Rossum · 23 years ago
  75. 6071873 Change in policy: when a slot_tp_xxx function looks for the __xxx__ method, by Guido van Rossum · 23 years ago
  76. 7c47beb Two improvements suggested by Greg Stein: by Barry Warsaw · 23 years ago
  77. 6af5bbb PyString_FromFormatV: Massage platform %p output to match what gcc does, by Tim Peters · 23 years ago
  78. 239abf7 getset_init(): the function name in the PyArg_ParseTuple() format by Guido van Rossum · 23 years ago
  79. a15dece Improve the error message issued when an unbound method is called with by Guido van Rossum · 23 years ago
  80. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  81. dadace0 PyString_FromFormat() and PyString_FromFormatV(): Largely ripped from by Barry Warsaw · 23 years ago
  82. 705f0f5 Add 'super', another new object type with magical properties. by Guido van Rossum · 23 years ago
  83. 271410a Change the getset type to take an optional third function argument: by Guido van Rossum · 23 years ago
  84. 845fc48 getset_descr_set(): guard against deletion (indicated by a set call by Guido van Rossum · 23 years ago
  85. 2c25239 slot_tp_descr_get(): guard against NULL obj or type (bug reported by by Guido van Rossum · 23 years ago
  86. 91c0d8a getset_init(): make the arguments optional. by Guido van Rossum · 23 years ago
  87. 96685bf float_pow: Put *all* of the burden on the libm pow in normal by Tim Peters · 23 years ago
  88. 29a62dd Add new built-in type 'getset' (PyGetSet_Type). by Guido van Rossum · 23 years ago
  89. 0b13116 err_ovf(): only raise OverflowError when OverflowWarning was raised. by Guido van Rossum · 23 years ago
  90. 31960db int_pow(): Repair typo when passing on to float pow (the 2nd argument was by Tim Peters · 23 years ago
  91. e27f795 Change all case where we used to raise OverflowError to issue a by Guido van Rossum · 23 years ago
  92. 60f0188 Merge changes from r22a2-branch back into trunk. Also, change patch by Barry Warsaw · 23 years ago
  93. 5d815f3 Address SF bug #442813. The sequence getitem wrappers should do by Guido van Rossum · 23 years ago
  94. 9676b22 Weak reference support, closing SF bug #451773. by Guido van Rossum · 23 years ago
  95. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  96. 1a49350 type_new(): look for __dynamic__ at the module level (after looking in by Guido van Rossum · 23 years ago
  97. 4066769 Fix core dump in repr() of instancemethod whose class==NULL. by Guido van Rossum · 23 years ago
  98. f23c41d instance_getattr2(): rewritten to remove unnecessary stuff and by Guido van Rossum · 23 years ago
  99. cdf0d75 Instance methods: allow a NULL value for im_class. by Guido van Rossum · 23 years ago
  100. 8d32c8b type_new(): only defer to the winning metatype if it's different from by Guido van Rossum · 23 years ago