1. 9fc8a29 Fix for SF bug 551412. When _PyType_Lookup() is called on a type by Guido van Rossum · 22 years ago
  2. cacfc07 - A new type object, 'string', is added. This is a common base type by Guido van Rossum · 22 years ago
  3. 9ee4b94 Add a safeguard against setting the class to something with a by Guido van Rossum · 22 years ago
  4. bf9cb3f Use function instead of macro spellings for PyObject_memorystuff. by Tim Peters · 22 years ago
  5. d4e5be5 Closes: #556025 seg fault when doing list(xrange(1e9)) by Neal Norwitz · 22 years ago
  6. 4be55b5 file_doc: Add some description of the U mode character, but only when by Barry Warsaw · 22 years ago
  7. 0ebac97 Patch 549187. Improve string formatting error message. by Raymond Hettinger · 22 years ago
  8. 4402241 Jim Fulton reported a segfault in dir(). A heavily proxied object by Guido van Rossum · 22 years ago
  9. 775c11f Add #ifdef PY_USING_UNICODE sections, so that by Walter Dörwald · 22 years ago
  10. e452659 Patch #551410: Implement tp_getiter. by Martin v. Löwis · 22 years ago
  11. 01f94bd Patch #552433: Special-case tuples. Avoid sub-type checking for lists. by Martin v. Löwis · 22 years ago
  12. 4ce71f7 PyObject_Realloc(): If a small block is shrinking, bite the expense of by Tim Peters · 22 years ago
  13. d901832 Remove old deprecated features from the xrange object. by Fred Drake · 22 years ago
  14. edb51bb Fix attribute access for the xrange objects. The tp_getattr and tp_getattro by Fred Drake · 22 years ago
  15. 71390a9 clarify message when raising TypeError to indicate that float() accepts by Skip Montanaro · 22 years ago
  16. 29c0afc Just added comments, and cleared some XXX questions, related to int by Tim Peters · 22 years ago
  17. 449b5a8 _PyObject_DebugCheckAddress(): If the leading pad bytes are corrupt, by Tim Peters · 22 years ago
  18. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  19. 602f740 SF patch 549375: Compromise PyUnicode_EncodeUTF8 by Tim Peters · 22 years ago
  20. 7dab242 - New builtin function enumerate(x), from PEP 279. Example: by Guido van Rossum · 22 years ago
  21. 517c7d4 PyNumber_CoerceEx: this took a shortcut (not doing anything) when the by Guido van Rossum · 22 years ago
  22. 9364698 Make sure that tp_free frees the int the same way as tp_dealloc would. by Guido van Rossum · 22 years ago
  23. c95cc87 Clean up the layout of the bool_as_number struct initializer. by Guido van Rossum · 22 years ago
  24. f16951c abstract_get_bases(): Clarify exactly what the return values and by Barry Warsaw · 22 years ago
  25. c4ad0bc Clarify return value of PyLong_AsLongLong(). by Jeremy Hylton · 22 years ago
  26. 030a5ce unicode_memchr(): Squashed gratuitous int-vs-size_t mismatch (which by Tim Peters · 22 years ago
  27. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 22 years ago
  28. e1682a8 Py_UniversalNewlineFread(): small speed boost on non-Windows boxes. by Tim Peters · 22 years ago
  29. 0eca65c PyUnicode_EncodeUTF8(): tightened the memory asserts a bit, and at least by Tim Peters · 22 years ago
  30. 2a7ff35 Back out 2.140. by Martin v. Löwis · 22 years ago
  31. 058b141 Py_UniversalNewlineFread(): Many changes. by Tim Peters · 22 years ago
  32. 7e3d961 PyUnicode_EncodeUTF8: squash compiler wng. The difference of two by Tim Peters · 22 years ago
  33. a4eb14b Patch #495401: Count number of required bytes for encoding UTF-8 before by Martin v. Löwis · 22 years ago
  34. 24ea8d3 Fix SF bug #505315: Make free and cell vars show up consistently in locals(). by Jeremy Hylton · 22 years ago
  35. 08d8215 _PyObject_DebugMallocStats(): Added some potentially expensive internal by Tim Peters · 22 years ago
  36. 64d80c9 PyObject_Malloc: make a tiny bit faster for platforms where malloc(0) by Tim Peters · 22 years ago
  37. 3e12071 Remove some long-disabled debugging boilerplate. by Tim Peters · 22 years ago
  38. 2b85897 type_get_doc(): Squash compiler wng about incompatible ptr types. by Tim Peters · 22 years ago
  39. 6ca7d41 SF bug 542984. by Guido van Rossum · 22 years ago
  40. e8fc640 SF bug 544647. by Guido van Rossum · 22 years ago
  41. 7766091 Whitespace normalization and fold some long lines. by Guido van Rossum · 22 years ago
  42. 0fe940c Return the orginal string only if it's a real str or unicode by Walter Dörwald · 22 years ago
  43. 3aa3fc4 Remove 'const' from local variable declaration in string_zfill() -- it by Guido van Rossum · 22 years ago
  44. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  45. 69cf3c7 Deprecate % as well. The message for deprecation of //, % and divmod by Guido van Rossum · 22 years ago
  46. 9ec4c78 SF bug #543387. by Guido van Rossum · 22 years ago
  47. b6b8942 SF bug #541883 (Vincent Fiack). by Guido van Rossum · 22 years ago
  48. 077f271 SF bug 543840: complex(string) accepts strings with \0 by Tim Peters · 22 years ago
  49. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  50. 5961042 Fold long lines. (Walter, please take note! :-) by Guido van Rossum · 22 years ago
  51. 0e87118 _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats. by Tim Peters · 22 years ago
  52. b7ba743 SF bug 543148: Memory leak with stackframes + inspect. by Tim Peters · 22 years ago
  53. 018b0eb Partially implement SF feature request 444708. by Guido van Rossum · 22 years ago
  54. 8a8cdfd Small anal correctness tweaks: by Tim Peters · 22 years ago
  55. e027d98 Add Raymond Hettinger's d.pop(). See SF patch 539949. by Guido van Rossum · 22 years ago
  56. 85cc1c4 _PyObject_DebugRealloc(): rewritten to let the underlying realloc do by Tim Peters · 22 years ago
  57. f539c68 _PyObject_DebugDumpAddress(): clarify an output message. by Tim Peters · 22 years ago
  58. f6fb501 PYMALLOC_{CLEAN, DEAD, FORBIDDEN}BYTE symbols: remove the PYMALLOC_ by Tim Peters · 22 years ago
  59. af3e8de First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz with by Tim Peters · 22 years ago
  60. d2560cd Move PyObject_Malloc and PyObject_Free here from object.c. Remove by Neil Schemenauer · 22 years ago
  61. bdf0eed Move PyObject_Malloc and PyObject_Free to obmalloc.c. by Neil Schemenauer · 22 years ago
  62. 58aa861 Remove PyMalloc_*. by Neil Schemenauer · 22 years ago
  63. 09a2ae5 Change signature of _PyObject_GC_Malloc to match PyObject_MALLOC. by Neil Schemenauer · 22 years ago
  64. 626d774 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  65. 7465ad2 Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  66. 510492e Remove PyMalloc_New, _PyMalloc_MALLOC, and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  67. 9acae5a Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  68. 99b5d28 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  69. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  70. 6189b89 PyObject_GC_Del and PyObject_Del can now be used as a function designators. by Neil Schemenauer · 22 years ago
  71. 52aefc8 SF bug 542181: Realloc behavior by Tim Peters · 22 years ago
  72. 68e6933 Bug fix for UTF-8 encoding bug (buffer overrun) #541828. by Marc-André Lemburg · 22 years ago
  73. ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 22 years ago
  74. 2ea9111 SF bug 538827: Python open w/ MSVC6: bad error msgs. by Tim Peters · 22 years ago
  75. 0986d82 - A type can now inherit its metatype from its base type. Previously, by Guido van Rossum · 22 years ago
  76. 7f7666f isatty() should return a bool. by Guido van Rossum · 22 years ago
  77. 49f2681 Minor improvements to the stats output dump, including adding commas to by Tim Peters · 22 years ago
  78. 8ace1ab - Changed new-style class instantiation so that when C's __new__ by Guido van Rossum · 22 years ago
  79. 6b8ab74 Don't inherit tp_new! This is a retraction of half of the previous by Guido van Rossum · 22 years ago
  80. cc8fe04 Inherit tp_new and tp_is_gc. by Guido van Rossum · 22 years ago
  81. ffdd22f Repair an incomprehensible comment. by Tim Peters · 22 years ago
  82. 16bcb6b _PyMalloc_DebugDumpStats(): vastly improved the output, and it now by Tim Peters · 22 years ago
  83. e70ddf3 Widespread, but mostly in _PyMalloc_Malloc: optimize away all expensive by Tim Peters · 22 years ago
  84. c334df5 A much revised version of SF patch 514662, by Naofumi Honda. This by Guido van Rossum · 22 years ago
  85. bfc2e5e Clarifying code rearrangement and comments by David Abrahams. I've by Guido van Rossum · 22 years ago
  86. b7265db _PyMalloc_Realloc(): removed a now-pointless cast. by Tim Peters · 22 years ago
  87. 84c1b97 _PyMalloc_{Malloc, Realloc}: Strive to meet the doc's promises about by Tim Peters · 22 years ago
  88. 645a22e As Neal pointed out, bool_print was an order of magnitude too complex. by Guido van Rossum · 22 years ago
  89. 5f82036 Oops. Here are the new files. My apologies. by Guido van Rossum · 22 years ago
  90. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  91. cd874ed Fix the names of the classmethod and staticmethod constructors as passed to by Fred Drake · 22 years ago
  92. d464107 Fold some long lines. Delete blank initial line. by Guido van Rossum · 22 years ago
  93. 155db9a SF patch 537536 by Phillip J. Eby, fix for SF bug 535444, super() by Guido van Rossum · 22 years ago
  94. 6169f09 Fixed errors in two comments. by Tim Peters · 22 years ago
  95. 338e010 Restructured my pool-management overview in terms of the three by Tim Peters · 22 years ago
  96. 7ccfadf New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void). by Tim Peters · 22 years ago
  97. 62f5a9d Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  98. 93c1e23 Use METH_VARARGS rather than METH_OLDARGS implicitly (args are ignored) by Neal Norwitz · 22 years ago
  99. 57b17ad Add one more assert that indirectly interlocking conditions are consistent by Tim Peters · 22 years ago
  100. 4c5be0c Fixed an error in a new assert. by Tim Peters · 22 years ago