1. 7465ad2 Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  2. 510492e Remove PyMalloc_New, _PyMalloc_MALLOC, and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  3. 9acae5a Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  4. 99b5d28 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  5. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  6. 6189b89 PyObject_GC_Del and PyObject_Del can now be used as a function designators. by Neil Schemenauer · 22 years ago
  7. 52aefc8 SF bug 542181: Realloc behavior by Tim Peters · 22 years ago
  8. 68e6933 Bug fix for UTF-8 encoding bug (buffer overrun) #541828. by Marc-André Lemburg · 22 years ago
  9. ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 22 years ago
  10. 2ea9111 SF bug 538827: Python open w/ MSVC6: bad error msgs. by Tim Peters · 22 years ago
  11. 0986d82 - A type can now inherit its metatype from its base type. Previously, by Guido van Rossum · 22 years ago
  12. 7f7666f isatty() should return a bool. by Guido van Rossum · 22 years ago
  13. 49f2681 Minor improvements to the stats output dump, including adding commas to by Tim Peters · 22 years ago
  14. 8ace1ab - Changed new-style class instantiation so that when C's __new__ by Guido van Rossum · 22 years ago
  15. 6b8ab74 Don't inherit tp_new! This is a retraction of half of the previous by Guido van Rossum · 22 years ago
  16. cc8fe04 Inherit tp_new and tp_is_gc. by Guido van Rossum · 22 years ago
  17. ffdd22f Repair an incomprehensible comment. by Tim Peters · 22 years ago
  18. 16bcb6b _PyMalloc_DebugDumpStats(): vastly improved the output, and it now by Tim Peters · 22 years ago
  19. e70ddf3 Widespread, but mostly in _PyMalloc_Malloc: optimize away all expensive by Tim Peters · 22 years ago
  20. c334df5 A much revised version of SF patch 514662, by Naofumi Honda. This by Guido van Rossum · 22 years ago
  21. bfc2e5e Clarifying code rearrangement and comments by David Abrahams. I've by Guido van Rossum · 22 years ago
  22. b7265db _PyMalloc_Realloc(): removed a now-pointless cast. by Tim Peters · 22 years ago
  23. 84c1b97 _PyMalloc_{Malloc, Realloc}: Strive to meet the doc's promises about by Tim Peters · 22 years ago
  24. 645a22e As Neal pointed out, bool_print was an order of magnitude too complex. by Guido van Rossum · 22 years ago
  25. 5f82036 Oops. Here are the new files. My apologies. by Guido van Rossum · 22 years ago
  26. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  27. cd874ed Fix the names of the classmethod and staticmethod constructors as passed to by Fred Drake · 22 years ago
  28. d464107 Fold some long lines. Delete blank initial line. by Guido van Rossum · 22 years ago
  29. 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 22 years ago
  30. 6169f09 Fixed errors in two comments. by Tim Peters · 22 years ago
  31. 338e010 Restructured my pool-management overview in terms of the three by Tim Peters · 22 years ago
  32. 7ccfadf New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void). by Tim Peters · 22 years ago
  33. 62f5a9d Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  34. 93c1e23 Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) by Neal Norwitz · 22 years ago
  35. 57b17ad Add one more assert that indirectly interlocking conditions are consistent by Tim Peters · 22 years ago
  36. 4c5be0c Fixed an error in a new assert. by Tim Peters · 22 years ago
  37. b1da050 Fixed a typo in a new comment. by Tim Peters · 22 years ago
  38. 2c95c99 _PyMalloc_Free(): As was already done for _PyMalloc_Malloc, rearranged by Tim Peters · 22 years ago
  39. 1e16db6 Added a long-overdue comment block giving an overview of pool operations by Tim Peters · 22 years ago
  40. c2ce91a It's once again thought safe to call the pymalloc free/realloc with an by Tim Peters · 22 years ago
  41. 7b85b4a new_arena(): In error cases, reset the number of available pools to 0. by Tim Peters · 22 years ago
  42. 1d99af8 Changed the #-of-arenas counters to uints -- no need to be insane about by Tim Peters · 22 years ago
  43. 8deda70 Eliminate DONT_SHARE_SHORT_STRINGS. by Tim Peters · 22 years ago
  44. df4d137 Turns out the off_t macro isn't used anymore, so got rid of it. by Tim Peters · 22 years ago
  45. 3c83df2 Now that we're no longer linking arenas together, there's no need to by Tim Peters · 22 years ago
  46. 1230068 Retract the claim that this is always safe if PyMem_{Del, DEL, Free, FREE} by Tim Peters · 22 years ago
  47. d97a1c0 Lots of changes: by Tim Peters · 22 years ago
  48. 1f7df35 Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols. by Tim Peters · 22 years ago
  49. f589c05 If the GC is enabled then don't use the ob_type pointer to create a list by Neil Schemenauer · 22 years ago
  50. bd02b14 Add missing "void" to function. by Neil Schemenauer · 22 years ago
  51. ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 22 years ago
  52. d1139e0 PYMALLOC_DEBUG routines: The "check API family" gimmick was going nowhere by Tim Peters · 22 years ago
  53. 7bf9715 Introduce two new flag bits that can be set in a PyMethodDef method by Fred Drake · 22 years ago
  54. 38a8916 Remove weakref free list. This has the side effect of fixing a memory by Neil Schemenauer · 22 years ago
  55. e990c79 Add missing methods iterkeys, itervalues and iteritems to dict-proxy objects. by Walter Dörwald · 22 years ago
  56. 8c07722 Fix whitespace. by Walter Dörwald · 22 years ago
  57. e085017 _PyMalloc_DebugRealloc(): simplify decl of "fresh". by Tim Peters · 22 years ago
  58. 62c06ba Minor code cleanup -- no semantic changes. by Tim Peters · 22 years ago
  59. 3a204a7 Grow the string buffer at a mildly exponential rate for the getc version by Neil Schemenauer · 22 years ago
  60. ddea208 Give Python a debug-mode pymalloc, much as sketched on Python-Dev. by Tim Peters · 22 years ago
  61. ed19b88 Check in (hopefully) corrected version of last change. by Neil Schemenauer · 22 years ago
  62. ce7fb9b Just whitespace fiddling. by Tim Peters · 22 years ago
  63. 1221c0a Build obmalloc.c directly instead of #include'ing from object.c. by Tim Peters · 22 years ago
  64. 12a6d94 Undo last commit. It's causing the tests to file. by Neil Schemenauer · 22 years ago
  65. 558ba52 Remove malloc hooks. by Neil Schemenauer · 22 years ago
  66. 398b9f6 Disallow open()ing of directories. Closes SF bug 487277. by Neil Schemenauer · 22 years ago
  67. dcc819a Use pymalloc if it's enabled. by Neil Schemenauer · 22 years ago
  68. a1a9c51 Add pymalloc object memory management functions. These must be by Neil Schemenauer · 22 years ago
  69. bab22be SF bug 533198: Complex power underflow raises exception. by Tim Peters · 22 years ago
  70. 047c05e Do not insert characters for unicode-escape decoders if the error mode by Martin v. Löwis · 22 years ago
  71. 25f3dc2 Drop the PyCore_* memory API. by Neil Schemenauer · 22 years ago
  72. d91eec9 Re-enable GC of method objects. by Neil Schemenauer · 22 years ago
  73. dbf409f Re-enable GC of iter objects. by Neil Schemenauer · 22 years ago
  74. 11f5be8 Simpilify PyCore_* macros by assuming the function prototypes for by Neil Schemenauer · 22 years ago
  75. 7e30548 Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault by Guido van Rossum · 22 years ago
  76. 2400831 SF patch 530070: pydoc regression, from Martin and Guido. by Tim Peters · 22 years ago
  77. f6eebbb Patch #530105: Allow file object may to be subtyped by Martin v. Löwis · 22 years ago
  78. 0c160a0 Patch #517521: Consider byte strings before Unicode strings by Martin v. Löwis · 22 years ago
  79. 0628dcf "Fix" for SF bug #520644: __slots__ are not pickled. by Guido van Rossum · 22 years ago
  80. cd637aa Fix for SF bug #529050 - ModuleType.__new__ crash. by Guido van Rossum · 22 years ago
  81. 8f01b68 Change Windows file.truncate() to (a) restore the original file position, by Tim Peters · 22 years ago
  82. fb05db2 file_truncate(): provide full "large file" support on Windows, by by Tim Peters · 22 years ago
  83. dfce3bf Bugfix candidate. Adapter from SF patch 528038; fixes SF bug 527816. by Guido van Rossum · 22 years ago
  84. c8bb9eb Patch #494047: removes 64-bit ?: to cope on plan9. by Martin v. Löwis · 22 years ago
  85. dc5a508 SF bug 525705: [2.2] underflow raise OverflowException. by Tim Peters · 22 years ago
  86. 0522d98 Fix leak of NotImplemented in previous checkin to PyNumber_Add(). by Jeremy Hylton · 22 years ago
  87. 6ae6a43 Fix for SF bug 516727: MyInt(2) + "3" -> NotImplemented by Jeremy Hylton · 22 years ago
  88. 70ffddf Guido pointed out that I was missing a couple decrefs. by Michael W. Hudson · 22 years ago
  89. ce358e3 Apply (my) patch: by Michael W. Hudson · 22 years ago
  90. 7bb466a A fix & test for by Michael W. Hudson · 22 years ago
  91. a5d78cc Whether platform malloc(0) returns NULL has nothing to do with whether by Tim Peters · 22 years ago
  92. 5329cdb _PyLong_Copy(): was creating a copy of the absolute value, but should by Tim Peters · 22 years ago
  93. db30ac4 Revert the last odd change to PyNumber_Long: the problem it was trying by Tim Peters · 22 years ago
  94. 2eb0b87 SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects by Guido van Rossum · 22 years ago
  95. 5e9c80d %#x/%#X format conversion cleanup (see patch #450267): by Andrew MacIntyre · 22 years ago
  96. c487439 OS/2 EMX port changes (Objects part of patch #450267): by Andrew MacIntyre · 22 years ago
  97. f9bd6b0 Allow __doc__ to be of arbitrary type. Patch by James Henstridge, by Martin v. Löwis · 22 years ago
  98. a5854c2 Patch #508038: Do not use a type as a variable name. by Martin v. Löwis · 22 years ago
  99. fa2e4c2 Declare real and imag as read-only attributes. by Guido van Rossum · 22 years ago
  100. bd3be8f Fix to the UTF-8 encoder: it failed on 0-length input strings. by Marc-André Lemburg · 23 years ago