1. 9efe8ef #Plug small memory leaks in constructors. by Guido van Rossum · 27 years ago
  2. c3beda2 Plug small leaks: the [de]compress object itself was never freed. by Guido van Rossum · 27 years ago
  3. d19c04a Change [_Py_]re_compile_pattern() to return a char*. by Guido van Rossum · 27 years ago
  4. 5ade084 Mod suggested by Donn Cave -- invoke makexp_aix relative to $0 by Guido van Rossum · 27 years ago
  5. 3f0bff6 Disable the portable multimedia modules (audioop, imageop, rgbimg) by by Guido van Rossum · 27 years ago
  6. 15a4039 Fix the bug Jeremy was experiencing: both the close() and the by Guido van Rossum · 27 years ago
  7. 7922bd7 Added -X option to suppress default import of site.py. Also split the by Guido van Rossum · 27 years ago
  8. 83b6709 Swap the sense of the -X option vis-a-vis Py_UseClassExceptionsFlag so by Barry Warsaw · 27 years ago
  9. f488af3 Parse new command line option -X which enables exception classes. by Barry Warsaw · 27 years ago
  10. c1f0882 Added (binaryfunc) casts to function pointers in method lists. by Guido van Rossum · 27 years ago
  11. 24a4994 Some long variables should have been int to match the 'i' format specifier. by Guido van Rossum · 27 years ago
  12. e20aef5 Ignore whitespace between formats (not internal to a count+format). by Guido van Rossum · 27 years ago
  13. d14c068 Add unsupported variable EXE which can be set to .exe on systems where by Guido van Rossum · 27 years ago
  14. 1171ee6 Added configuration tests for presence of alarm(), pause(), and getpwent() by Guido van Rossum · 27 years ago
  15. 779133c Removed JF's dollar-Log-dollar RCS turd that caused compilation to by Barry Warsaw · 27 years ago
  16. d7a7100 Remove redundant decl for PyOS_InputHook. by Guido van Rossum · 27 years ago
  17. c6ef204 Added /**/ around #end tags by Guido van Rossum · 27 years ago
  18. bae6523 Must remove conflicting files from archive by Guido van Rossum · 27 years ago
  19. 6b9fdf5 Globally renamed join() to joinpath() to avoid compilation error on Cray. by Guido van Rossum · 27 years ago
  20. 725d941 Renamed strndup to pystrndup, to avoid conflicting prototype by Guido van Rossum · 27 years ago
  21. 4f46fc6 When we have signalmodule.o, remove intrcheck.o as well as sigcheck.o. by Guido van Rossum · 27 years ago
  22. 5b02078 Alas, the thread support for Tk didn't work. Withdraw it, until I by Guido van Rossum · 27 years ago
  23. 25f9303 Moved inclusion of PURIFY in LINKCC to configure by Guido van Rossum · 27 years ago
  24. ed2554a Casts by Jack to shut up the Mac compiler. by Guido van Rossum · 27 years ago
  25. bad3c01 DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with by Guido van Rossum · 27 years ago
  26. 79fa8b0 When making all, don't make sharedmods. That's now called separately by Guido van Rossum · 27 years ago
  27. 57e846f Use a trick to make the test for GMP v2 to work when GMP v1 defines by Guido van Rossum · 27 years ago
  28. 607b33a Different strategy regarding whether to declare getrusage() and by Guido van Rossum · 27 years ago
  29. 53665e5 Last minute changes for \B. AMK. by Guido van Rossum · 27 years ago
  30. 7c14103 Keep gcc -Wall happy by Guido van Rossum · 27 years ago
  31. f84a539 Added std copyright notice. by Guido van Rossum · 27 years ago
  32. f1c018d Fixed refcount bug (thank you, Purify and AMK). by Guido van Rossum · 27 years ago
  33. 644c17d Several bug fixes. by Jeremy Hylton · 27 years ago
  34. 6d8841c Added a bunch of XXX comments about things I'd like to see changed... by Guido van Rossum · 27 years ago
  35. 0d2390c Merge Mac and Windows mods (which mostly affect the same problem -- no by Guido van Rossum · 27 years ago
  36. 0318bd6 Use _Py_re_match/search instead of re_match/search; these may become by Guido van Rossum · 27 years ago
  37. 41b9f00 Many changes. by Jeremy Hylton · 27 years ago
  38. 95e8053 1.5a3 prerelease 1 from AMK by Guido van Rossum · 27 years ago
  39. a74ef66 Must update the available space in the output buffer after by Jeremy Hylton · 27 years ago
  40. abed54a Fix bug with \< (AMK). by Guido van Rossum · 27 years ago
  41. c24f038 Changes by AMK: by Guido van Rossum · 27 years ago
  42. 52d6832 Add syntax for hex,octal by Guido van Rossum · 27 years ago
  43. 142eeb8 cPickle release 0.3 from Jim Fulton by Guido van Rossum · 27 years ago
  44. 7242905 Megapatch for IRIX 6 by Sjoerd. by Guido van Rossum · 27 years ago
  45. de4a4ca Added buffer_info() method that returns address and length in bytes of by Guido van Rossum · 27 years ago
  46. 4462064 Renamed Py_input_hook to PyOS_InputHook. by Guido van Rossum · 27 years ago
  47. 98d9d09 Added O_BINARY and O_TEXT (for Windows). by Guido van Rossum · 27 years ago
  48. 02c0467 Rather unsatisfactory temporary hack to get it to run by Guido van Rossum · 27 years ago
  49. fb84255 New version of Vladimir Marangozov's AIX hacks -- simpler etc. by Guido van Rossum · 27 years ago
  50. 9b5dbed Attempt to import readline at interactive startup. by Guido van Rossum · 27 years ago
  51. 0969d36 New mechanism for GNU readline interface, via module by Guido van Rossum · 27 years ago
  52. 7f400be Add pointer to new BSDDB module. by Guido van Rossum · 27 years ago
  53. 668e441 purported linux portability patch (Oliver Andrich) by Guido van Rossum · 27 years ago
  54. 5d1770e Py_Cleanup() is now Py_Finalize(). by Guido van Rossum · 27 years ago
  55. 5c159bd Plug memory leak (DECREF doc string properly after inserting in dict). by Guido van Rossum · 27 years ago
  56. b02158e Oops, one more checkin. Use the new tstate/interp interface. by Guido van Rossum · 27 years ago
  57. 08c1661 Add finialization routines; fixed some memory leaks related to this. by Guido van Rossum · 27 years ago
  58. 05f7c50 Free the malloc'ed buffer that holds the command once we're done with it. by Guido van Rossum · 27 years ago
  59. d0924f4 Add a simple way to enable purify; now you can set the Make variable by Guido van Rossum · 27 years ago
  60. 35d4337 Functionality enhancement: allow other threads to use Tk commands by Guido van Rossum · 27 years ago
  61. 3e819a7 Compatibility with Tcl/Tk 8.0b*. by Guido van Rossum · 27 years ago
  62. f4e32c7 Add definitions for symbolic constants LOCK_{EX,NB,SH,UN}. by Guido van Rossum · 27 years ago
  63. 5ec8e4b Moved the special compile of getbuildno.o to ../Makefile.in. by Guido van Rossum · 27 years ago
  64. 496f8f6 Removed remaining support for Tk versions below 4.0. by Guido van Rossum · 27 years ago
  65. 4c12570 Adapted to new build procedure (hopefully correct -- can't test it!). by Guido van Rossum · 27 years ago
  66. 534ac09 Removed a bunch of extern declarations of functions that are now by Guido van Rossum · 27 years ago
  67. f6ca6aa New build procedure. by Guido van Rossum · 27 years ago
  68. 4c04be6 This is now the "real" main program -- it calls Py_Main(argc, argv) by Guido van Rossum · 27 years ago
  69. ed52aac This is no longer the real main program; it now defines Py_Main(), so by Guido van Rossum · 27 years ago
  70. 75aa0d6 Use the new functions PyEval_AcquireThread() and by Guido van Rossum · 27 years ago
  71. 77eecfa Patches by AMK to check that the db is still open. by Guido van Rossum · 27 years ago
  72. b8ad024 Add 'return' keyword before error calls. by Guido van Rossum · 27 years ago
  73. 74fb303 Jeffrey's latests by Guido van Rossum · 27 years ago
  74. 04a1d74 Jeffrey's newest by Guido van Rossum · 27 years ago
  75. faf4908 Reformatted. Fixed some problem with uninitialized syntax tables. Jeffrey. by Guido van Rossum · 27 years ago
  76. 007c80e Added reop (moved reop and regex to non-shared section). by Guido van Rossum · 27 years ago
  77. 1243ae7 Allow '@' character as end of line padding in uuencode format. by Guido van Rossum · 27 years ago
  78. 63e1819 New version from Jeffrey after I complained about some glaring bugs. by Guido van Rossum · 27 years ago
  79. db25f32 New versions straight from Jeffrey Ollie's web site by Guido van Rossum · 27 years ago
  80. 3b1c89e MACDEPPATH: Remove `sharedmodules' from default value of this variable by Barry Warsaw · 27 years ago
  81. 295b8e5 Add sys/types.h include for pid_t when threading. by Guido van Rossum · 27 years ago
  82. 0318fd6 Moved the definition of posix_times__doc__ to outside of #ifdef HAVE_TIMES by Roger E. Masse · 27 years ago
  83. 97b5457 Small changes (casts etc.) by Jack, for Mac compilation. by Guido van Rossum · 27 years ago
  84. 3c54030 Doc strings (AMK). by Guido van Rossum · 27 years ago
  85. ec4f4ac Added doc strings (Neil Schemenauer). by Guido van Rossum · 27 years ago
  86. 21f8497 Use string.h, not strings.h by Guido van Rossum · 27 years ago
  87. 91ba64d socket_type -> SocketType by Guido van Rossum · 27 years ago
  88. 24995b9 array_type -> ArrayType by Guido van Rossum · 27 years ago
  89. 290283b Mac hack to make select() work again... by Guido van Rossum · 27 years ago
  90. 69b9ae4 Add doc string to type object. by Fred Drake · 27 years ago
  91. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  92. 0b82fe7 Partial(?) 64bit patch (AMK). by Guido van Rossum · 27 years ago
  93. b9f866c Enable putenv and waitpid (== wait4) for NeXT. by Guido van Rossum · 27 years ago
  94. b6190d3 Defined array.array_type, the type object. by Guido van Rossum · 27 years ago
  95. 3b4b6fc Add socket.socket_type, as discussed on c.l.p. by Guido van Rossum · 27 years ago
  96. 49bff65 Include config.h so it can define const away for K&R. by Guido van Rossum · 27 years ago
  97. 7929c6f Make delimiter and separator static for K&R C. by Guido van Rossum · 27 years ago
  98. b24c9ea fixed ratecv to continue working if product of rates is bigger than 32 bits by Guido van Rossum · 27 years ago
  99. 511f163 Removed MetroWerks workaround, replaced by defines in mymath.h (Jack) by Guido van Rossum · 27 years ago
  100. 19a6c8a workaround for Mac MSL header definitions of TRUE and FALSE (Jack) by Guido van Rossum · 27 years ago