1. 03b3f04 long_mul(): The PyNumber_Multiply() call can return a long if the by Guido van Rossum · 23 years ago
  2. ebca9fc PyObject_Generic{Get,Set}Attr(): ensure that the attribute name is a by Guido van Rossum · 23 years ago
  3. be52346 function_call(): Remove a bogus (and I mean *really* bogus) call to by Guido van Rossum · 23 years ago
  4. dbb53d9 Fix of SF bug #475877 (Mutable subtype instances are hashable). by Guido van Rossum · 23 years ago
  5. 5b443c6 Address SF patch #480716 as well as related issues. by Guido van Rossum · 23 years ago
  6. 8f1ea71 Add more inline documentation, as contributed in #487906. by Martin v. Löwis · 23 years ago
  7. 9161c8b PyString_FromFormatV, string_repr: document why these use sprintf by Tim Peters · 23 years ago
  8. 1d5b3f2 Fix for SF bug #485678. by Guido van Rossum · 23 years ago
  9. d132750 Patch 487906: update inline docs. by Martin v. Löwis · 23 years ago
  10. 4222104 SF bug #487743: test_builtin fails on 64 bit platform. by Tim Peters · 23 years ago
  11. b3be216 Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the by Jack Jansen · 23 years ago
  12. 97019e4 PyFloat_AsStringEx(): This function takes an output char* but doesn't by Tim Peters · 23 years ago
  13. c1bbcb8 PyFile_WriteString(): change prototype so that the string arg is by Tim Peters · 23 years ago
  14. d586756 weakref_repr(), proxy_repr(): Conversion of sprintf() to by Barry Warsaw · 23 years ago
  15. e5c492d formatfloat(), formatint(): Conversion of sprintf() to PyOS_snprintf() by Barry Warsaw · 23 years ago
  16. 312af42 structseq_new(): Conversion of sprintf() to PyOS_snprintf() for buffer by Barry Warsaw · 23 years ago
  17. 6197509 PyInt_FromString(), int_repr(), int_oct(), int_hex(): Conversion of by Barry Warsaw · 23 years ago
  18. af8aef9 PyFloat_FromString(): Conversion of sprintf() to PyOS_snprintf() for by Barry Warsaw · 23 years ago
  19. 01d697a complex_to_buf(), complex_subtype_from_c_complex(): Conversion of by Barry Warsaw · 23 years ago
  20. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  21. 11326de Fix for bug #485951: repr diff between string and unicode. by Marc-André Lemburg · 23 years ago
  22. d4c0a9c Fixes for possible buffer overflows in sprintf() usages. by Marc-André Lemburg · 23 years ago
  23. 64585f6 PyObject_GetItem(), PyObject_SetItem(), PyObject_DelItem(): Fix a few by Guido van Rossum · 23 years ago
  24. 72f8213 Fix for bug #438164: %-formatting using Unicode objects. by Marc-André Lemburg · 23 years ago
  25. a91e964 Changing diapers reminded Guido that he wanted to allow for some measure by Tim Peters · 23 years ago
  26. 89c3a22 Add PyObject_CheckReadBuffer(), which returns true if its argument by Jeremy Hylton · 23 years ago
  27. a27a150 open_the_file(): Explicitly set errno to 0 before calling fopen(). by Tim Peters · 23 years ago
  28. 1144867 open_the_file(): this routine has a borrowed reference to the file by Tim Peters · 23 years ago
  29. 41c8321 Fix SF buf #476953: Bad more for opening file gives bad msg. by Jeremy Hylton · 23 years ago
  30. 6f97e49 long_true_divide(): decref its converted arguments. test_long_future.py by Tim Peters · 23 years ago
  31. 67754e9 Rehabilitated the fast-path richcmp code, and sped it up. It wasn't by Tim Peters · 23 years ago
  32. c99213f No code change -- just trying to document the return conditions for all by Tim Peters · 23 years ago
  33. 4e8ab5d float_divmod(): the code wasn't sick enough to stop the MS optimizer by Tim Peters · 23 years ago
  34. d2e40d6 SF bug #477221: abs and divmod act oddly with -0.0 by Tim Peters · 23 years ago
  35. faf0cd2 float_abs() again: Guido pointed out that this could screw up in the by Tim Peters · 23 years ago
  36. 573395a PyFunction_Call() did not check the result of PyObject_Repr() for NULL, and by Fred Drake · 23 years ago
  37. d2364e8 SF bug #477221: abs and divmod act oddly with -0.0. by Tim Peters · 23 years ago
  38. e2ec3eb fix for by Michael W. Hudson · 23 years ago
  39. c2fe618 Fix bad bug in structseq slicing (NULL pointers in result). Reported by by Tim Peters · 23 years ago
  40. d82fb78 Add values to tp_getattro and tp_flags so that dir(Ellipsis) will by Guido van Rossum · 23 years ago
  41. a427a2b Rename "dictionary" (type and constructor) to "dict". by Tim Peters · 23 years ago
  42. 7ad2d1e Add __del__ callbacks. They are too useful to leave out. by Guido van Rossum · 23 years ago
  43. afe7a94 When overriding __str__ or __repr__, set the tp_print slot to NULL. by Guido van Rossum · 23 years ago
  44. b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 23 years ago
  45. 3abca12 SF bug #475327: type() produces incorrect error msg by Tim Peters · 23 years ago
  46. 4d85953 dictionary() constructor: by Tim Peters · 23 years ago
  47. b92cf06 PyObject_CallFunction(), PyObject_CallMethod(): Make sure we do not touch by Fred Drake · 23 years ago
  48. c916f5a Be smarter about clearing the weakref lists for instances, instance methods, by Fred Drake · 23 years ago
  49. b421b8c Added two new functions to conveniently call functions/methods from C. by Fred Drake · 23 years ago
  50. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
  51. 6661be3 Allow assignment to newinstance.__dict__. by Guido van Rossum · 23 years ago
  52. 70e3688 complex_subtype_from_string(): move the declaration of s_buffer[] out by Guido van Rossum · 23 years ago
  53. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  54. 00ebd46 SF patch #474175 (Jay T Miller): file.readinto arg parsing bug by Guido van Rossum · 23 years ago
  55. 996fad3 Referencable is not a word, so don't use it in an error message <wink>. by Jeremy Hylton · 23 years ago
  56. 39a362d cleanup indentation by Jeremy Hylton · 23 years ago
  57. 5c66a26 Make the error message for unsupported operand types cleaner, in by Guido van Rossum · 23 years ago
  58. 56ff387 Fix for SF bug #472940: can't getattr() attribute shown by dir() by Guido van Rossum · 23 years ago
  59. c8e5645 Methods of built-in types now properly check for keyword arguments by Guido van Rossum · 23 years ago
  60. f23473f Add missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
  61. 2677512 Adding missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
  62. 6d20407 Big internal change that should have no external effects: unify the by Guido van Rossum · 23 years ago
  63. fdc1bd3 Fix for Bug #216405: by Thomas Heller · 23 years ago
  64. b5507ec Additional test and documentation for the unicode() changes. by Marc-André Lemburg · 23 years ago
  65. b8c65bc SF patch #470578: Fixes to synchronize unicode() and str() by Guido van Rossum · 23 years ago
  66. e82f75a Missing file structseq.c for SF patch #462296 by Guido van Rossum · 23 years ago
  67. 31f4d1f Remove an unnecessary check for NULL. by Fred Drake · 23 years ago
  68. 73006d0 When weakref proxies are involved in binary & ternary slot operations, by Fred Drake · 23 years ago
  69. f76de62 Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink) by Guido van Rossum · 23 years ago
  70. 6b47129 Fix error checking done by abstract_issubclass and abstract_isinstance. by Neil Schemenauer · 23 years ago
  71. 915f0eb Protect references to tp_descr_get and tp_dict with the appropriate test: by Guido van Rossum · 23 years ago
  72. 14a6f83 Remove a bunch of stuff that's no longer needed now that update_slot() by Guido van Rossum · 23 years ago
  73. caf5904 slot_sq_item(): ensure that self is an instance of the wrapper's by Guido van Rossum · 23 years ago
  74. c993315 SF bug [#468061] __str__ ignored in str subclass. by Tim Peters · 23 years ago
  75. b85a8b7 Refactored the update_slot() code a bit to be hopefully slightly more efficient: by Guido van Rossum · 23 years ago
  76. 687ae00 Get rid of __defined__ and tp_defined -- there's no need to by Guido van Rossum · 23 years ago
  77. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 23 years ago
  78. 825d875 Add (void *) casts to solve some problems on HP-UX 11.0, as discussed by Guido van Rossum · 23 years ago
  79. d396b9c Redid the slot computation. The initial slot assignments are now done by Guido van Rossum · 23 years ago
  80. 2bae4fa Remove extra "]" in splitlines() docstring. Reported by Neal Norwitz. by Fred Drake · 23 years ago
  81. 79fd0fc Band-aid solution to SF bug #470634: readlines() on linux requires 2 ^D's. by Guido van Rossum · 23 years ago
  82. 5af588b Now that COPYBUF is a new local macro, add #undef COPYBUF. by Guido van Rossum · 23 years ago
  83. fc57ccb SF bug [#470040] ParseTuple t# vs subclasses. by Tim Peters · 23 years ago
  84. 875eeaa Another step in the right direction: when a new class's attribute by Guido van Rossum · 23 years ago
  85. 2771b5b Rather gross workaround for a bug in the mac GUSI I/O library: by Jack Jansen · 23 years ago
  86. fd38f8e The slot definition table entry for mp_getitem had a bogus wrapper by Guido van Rossum · 23 years ago
  87. 7b9144b Halfway checkin. This is still messy, but it's beginning to address by Guido van Rossum · 23 years ago
  88. 0eb2a6e It turned out not so difficult to support old-style numbers (those by Guido van Rossum · 23 years ago
  89. 4438338 type_subclasses(): debug build was broken due to typo in new assert(). by Tim Peters · 23 years ago
  90. 1c45073 Keep track of a type's subclasses (subtypes), in tp_subclasses, which by Guido van Rossum · 23 years ago
  91. 03290ec Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, by Guido van Rossum · 23 years ago
  92. f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 23 years ago
  93. 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 23 years ago
  94. 406fe3b Repaired the debug Windows deaths in test_descr, by allocating enough by Tim Peters · 23 years ago
  95. 7254e5a _PyObject_GetDictPtr(): by Tim Peters · 23 years ago
  96. b3f0d34 PyObject_ClearWeakRefs() is now a real function instead of a function pointer; by Fred Drake · 23 years ago
  97. 8844d52 The weak reference implementation, separated from the weakref module. by Fred Drake · 23 years ago
  98. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  99. 50fda3b Make new classes dynamic by default. by Guido van Rossum · 23 years ago
  100. 59f809d type_new(): cast PyObject_MALLOC's result to char*, for clarity. by Tim Peters · 23 years ago