1. 9701732 Bump AC_PREREQ to 2.53. by Martin v. Löwis · 22 years ago
  2. d854f3b I am mad. This test never worked! by Guido van Rossum · 22 years ago
  3. ee48519 Modernize the minimal example of an extension type. by Fred Drake · 22 years ago
  4. 28de8d4 Add a (very) simple description of PyType_Ready(). by Fred Drake · 22 years ago
  5. 0babc44 Update the type of tp_dealloc. by Fred Drake · 22 years ago
  6. 263ad28 Spell Raymond Hettinger's name write by Neal Norwitz · 22 years ago
  7. b69844f Add Raymond Hettinger, CPA. by Guido van Rossum · 22 years ago
  8. e027d98 Add Raymond Hettinger's d.pop(). See SF patch 539949. by Guido van Rossum · 22 years ago
  9. ededa90 - Added support for inherent pointer types (typedefs of arrays) by Jack Jansen · 22 years ago
  10. da70485 Give type name when complaining about using input-only type for output or v.v. by Jack Jansen · 22 years ago
  11. 0036cba Remove acconfig.h. by Martin v. Löwis · 22 years ago
  12. 0b6964b Remove unused macros. by Martin v. Löwis · 22 years ago
  13. 1143799 Update to autoconf 2.5x. by Martin v. Löwis · 22 years ago
  14. 85cc1c4 _PyObject_DebugRealloc(): rewritten to let the underlying realloc do by Tim Peters · 22 years ago
  15. f539c68 _PyObject_DebugDumpAddress(): clarify an output message. by Tim Peters · 22 years ago
  16. f6fb501 PYMALLOC_{CLEAN, DEAD, FORBIDDEN}BYTE symbols: remove the PYMALLOC_ by Tim Peters · 22 years ago
  17. af3e8de First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz with by Tim Peters · 22 years ago
  18. e9e7452 First cut at repairing out-of-date comments; make alignment of macro defs by Tim Peters · 22 years ago
  19. d2560cd Move PyObject_Malloc and PyObject_Free here from object.c. Remove by Neil Schemenauer · 22 years ago
  20. bdf0eed Move PyObject_Malloc and PyObject_Free to obmalloc.c. by Neil Schemenauer · 22 years ago
  21. 58aa861 Remove PyMalloc_*. by Neil Schemenauer · 22 years ago
  22. 09a2ae5 Change signature of _PyObject_GC_Malloc to match PyObject_MALLOC. by Neil Schemenauer · 22 years ago
  23. 626d774 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  24. 7465ad2 Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  25. 510492e Remove PyMalloc_New, _PyMalloc_MALLOC, and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  26. 9acae5a Remove PyMalloc_New and PyMalloc_Del. by Neil Schemenauer · 22 years ago
  27. 99b5d28 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  28. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  29. 6189b89 PyObject_GC_Del and PyObject_Del can now be used as a function designators. by Neil Schemenauer · 22 years ago
  30. fec4eb1 Allow PyObject_Del to be used as a function designator. Provide binary by Neil Schemenauer · 22 years ago
  31. 20d0a1a Remove PyMalloc_* symbols. PyObject_Malloc now uses pymalloc if it's enabled. by Neil Schemenauer · 22 years ago
  32. 3e7b893 Remove PyMalloc_* symbols. PyObject_Malloc now uses pymalloc if it's enabled. by Neil Schemenauer · 22 years ago
  33. f6d1ea1 Change the type of the tp_free from 'destructor' to 'freefunc'. by Neil Schemenauer · 22 years ago
  34. 2bbdba3 Removed more hair in support of future-generator stmts. by Tim Peters · 22 years ago
  35. 68c7e26 Get rid of backward compatibility modules. Do this fairly early in the 2.3 cycle so we don't shoot ourselves in the foot later. by Jack Jansen · 22 years ago
  36. 04a8da5 Clean up the "all" support for -u. by Fred Drake · 22 years ago
  37. f9ddec4 Guido sez to remove the deprecation warning for a year. by Fred Drake · 22 years ago
  38. 85705e7 Got rid of obsolete defines. by Jack Jansen · 22 years ago
  39. 786681a Got rid of obsolete appearance flag. by Jack Jansen · 22 years ago
  40. cc8258d Added boolobject.c by Jack Jansen · 22 years ago
  41. 7df772b At CNRI's request, I'm changing the status of 1.6.1 from by Guido van Rossum · 22 years ago
  42. 5159f1d Got rid of ifdefs for long-obsolete GUSI versions and other lurkers. by Jack Jansen · 22 years ago
  43. 32baa2c These are long obsolete. Get rid of them. by Jack Jansen · 22 years ago
  44. b19444f Got rid of ifdefs for long-obsolete GUSI versions and other stuff that is now standard (appearance, interned strings) by Jack Jansen · 22 years ago
  45. 8ab04b4 Got rid of ifdefs for long-obsolete GUSI versions. by Jack Jansen · 22 years ago
  46. 9b745f6 Get rid of USE_CACHE_ALIGNED. It has no function anymore. by Jack Jansen · 22 years ago
  47. a7c2b30 Since xmllib is deprecated now, suppress the DeprecationWarning its test by Tim Peters · 22 years ago
  48. b05cd49 Ignore more deprecation warnings. by Tim Peters · 22 years ago
  49. 3c14efe Stop sucking up xmllib -- it's deprecated. by Tim Peters · 22 years ago
  50. deb121a I don't expect test_email_codecs to run on Windows. by Tim Peters · 22 years ago
  51. 3a15dac Added the resource name "all" to enable all of the optional resource uses. by Fred Drake · 22 years ago
  52. 2a519f8 Document __unicode__. Fixes #541245. by Martin v. Löwis · 22 years ago
  53. 81bdc93 Explain octal escapes. Fixes #542226. by Martin v. Löwis · 22 years ago
  54. 52aefc8 SF bug 542181: Realloc behavior by Tim Peters · 22 years ago
  55. 362ed34 Different .pyc icon - use "paler" colors to better differentiate it from the main .py icon. As discussed with Tim (prompted by cl.lpy posting) by Mark Hammond · 22 years ago
  56. 43735da Improve coverage of Objects/weakrefobject.c. by Fred Drake · 22 years ago
  57. 17850f7 Add a name by Andrew M. Kuchling · 22 years ago
  58. 7301907 Add deprecation warning to 'pre' module by Andrew M. Kuchling · 22 years ago
  59. 2854c47 Remove mention of 'pre' module by Andrew M. Kuchling · 22 years ago
  60. 7fd1c8c Remove support for importing 'pre' module by Andrew M. Kuchling · 22 years ago
  61. 409a4c0 Sync'ing with standalone email package 2.0.1. This adds support for by Barry Warsaw · 22 years ago
  62. 68e6933 Bug fix for UTF-8 encoding bug (buffer overrun) #541828. by Marc-André Lemburg · 22 years ago
  63. e3c764b Document PyType_CheckExact(), PyType_IS_GC(). by Fred Drake · 22 years ago
  64. ce0b664 Added test case for UTF-8 encoding bug #541828. by Marc-André Lemburg · 22 years ago
  65. a974561 Use random instead of whrandom by Andrew M. Kuchling · 22 years ago
  66. 9a62448 Use random module instead of whrandom Move imports to top by Andrew M. Kuchling · 22 years ago
  67. 3b2625f document all the valid encoding values by Skip Montanaro · 22 years ago
  68. 3c1ff5c When adding a name to the table of macros and environments, make sure it by Fred Drake · 22 years ago
  69. 0047e16 Added support for \csimplemacro and csimplemacrodesc. by Fred Drake · 22 years ago
  70. ab3b9eb Add deprecation warnings for modules as documented by Neal Norwitz · 22 years ago
  71. 6e99704 Add a deprecation warning to reflect the documented deprecation of the by Fred Drake · 22 years ago
  72. 4d61775 Started filling in the information about some of the basic types and macros by Fred Drake · 22 years ago
  73. 46cd794 Repair 2.2.1 release date. by Tim Peters · 22 years ago
  74. 375e302 Update to use the new \csimplemacro macro by Fred Drake · 22 years ago
  75. 79bf99c Document the \csimplemacro macro and the csimplemacrodesc environment. by Fred Drake · 22 years ago
  76. 19f827e Add \csimplemacro to parallel the csimplemacrodesc environment. by Fred Drake · 22 years ago
  77. 6b35370 Update docs for bool changes by Guido around April 6 by Neal Norwitz · 22 years ago
  78. 803a8ea Update docstring to reflect code change to bool by Neal Norwitz · 22 years ago
  79. 50ee94f is_builtin() is not a Boolean -- it can return -1, 0, 1. [SF #541652] by Guido van Rossum · 22 years ago
  80. eee12e9 Ignore an output directory for intermediates here as well. by Fred Drake · 22 years ago
  81. fd86771 Fix typo: coverted --> converted. Reported by Francois Pinard. by Fred Drake · 22 years ago
  82. 4c7fb96 Remove unconditional debugging prints. by Thomas Heller · 22 years ago
  83. fd0e82a Set the warn_dir option to 0 before running the install command. by Thomas Heller · 22 years ago
  84. 1630520 Fix an obvious bug. by Thomas Heller · 22 years ago
  85. 77f4438 Update the table of releases. by Fred Drake · 22 years ago
  86. b0f3cea Update table of releases. by Tim Peters · 22 years ago
  87. 688357e Patch #512005: getrusage() returns struct-like object. by Martin v. Löwis · 22 years ago
  88. 6cca2f4 Change 2.1.3 release date. by Tim Peters · 22 years ago
  89. 11c5d72 Update 2.1.3 Windows buildno. by Tim Peters · 22 years ago
  90. 8509ebc Patch #539392: Invoke setlocale, try opening the file in demo mode. by Martin v. Löwis · 22 years ago
  91. 95de5c1 Move Unicode finalization further down in the chain. Fixes bug #525620. by Marc-André Lemburg · 22 years ago
  92. bc82ab1 Do not call "knee" a standard module, and point to the new location. by Fred Drake · 22 years ago
  93. 2ea9111 SF bug 538827: Python open w/ MSVC6: bad error msgs. by Tim Peters · 22 years ago
  94. 0986d82 - A type can now inherit its metatype from its base type. Previously, by Guido van Rossum · 22 years ago
  95. d1a3c81 Move knee.py from Lib/ to Demo/imputil/. Fixes #515745. by Martin v. Löwis · 22 years ago
  96. 8ca162f Partial introduction of bools where appropriate. by Guido van Rossum · 22 years ago
  97. b8bff3f Return bools from functions named is_<whatever>(). by Guido van Rossum · 22 years ago
  98. 8fdc75b Lock methods acquire() and locked() now return bools. by Guido van Rossum · 22 years ago
  99. 7f7666f isatty() should return a bool. by Guido van Rossum · 22 years ago
  100. c45929e Move autoheader declarations into configure.in. by Martin v. Löwis · 22 years ago