1. aa8d167 Make sure not to call realloc() with a NULL pointer -- call malloc() by Guido van Rossum · 26 years ago
  2. 1180185 Include myselect.h -- needed on some platforms. by Guido van Rossum · 26 years ago
  3. 8bf6dc7 Rearrange the -I flags for compiling _tkinter.c so that by Guido van Rossum · 26 years ago
  4. d371ff1 Only do ttyname() when HAVE_TTYNAME is defined. by Guido van Rossum · 26 years ago
  5. ca6954a Should include "Python.h", not <Python.h> -- it's not a standard by Guido van Rossum · 26 years ago
  6. 11a5071 Jim Ahlstrom patch: Watcom chokes on a long expression in c_asinh(). by Guido van Rossum · 26 years ago
  7. 5d00b6d Need extern decl. for fdatasync() in case it exists but isn't declared by Guido van Rossum · 26 years ago
  8. 21142a0 Added fsync() and fdatasync(). Patches by Scott Cotton. Requires by Guido van Rossum · 26 years ago
  9. 446ccfe The doc string for strptime had the arguments reversed -- the string by Guido van Rossum · 26 years ago
  10. 6892aa3 fix bug in PyZlib_flush. patch from Grzegorz Makarewicz & Rafal Smotrzyk. by Jeremy Hylton · 26 years ago
  11. 015f22a Change the access() code to return 1 if granted, 0 if not granted. by Guido van Rossum · 26 years ago
  12. 763737b Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  13. 056bad9 Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  14. 94f6f72 Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  15. 716a89c Patch by Charles Waldman to implement an optional nlines argument to by Guido van Rossum · 26 years ago
  16. 0a6363d Get rid of the strptype() declaration -- on some BSD systems, it's a by Guido van Rossum · 26 years ago
  17. 1184789 Chris Herborth discovered a typo in the arrow key symbols. by Guido van Rossum · 26 years ago
  18. 65d5b57 Thanks to Chris Herborth, the thread primitives now have proper Py* by Guido van Rossum · 26 years ago
  19. 95864d3 Add dummy variable to avoid optimizer bug on OS/2 -- patch by Jeff Rush. by Guido van Rossum · 26 years ago
  20. 5bc4abe replace missing zalloc initialization (test_zlib now runs successfully) by Jeremy Hylton · 26 years ago
  21. 3625202 remove debugging fprintf (should have checked this before previous checkin) by Jeremy Hylton · 26 years ago
  22. a37e244 patches from Andrew by Jeremy Hylton · 26 years ago
  23. 6de7d0c When _PyString_Resize() reports failure, the variable referring to the by Fred Drake · 26 years ago
  24. 476e49f Jim Fulton writes: by Guido van Rossum · 26 years ago
  25. 4c07f81 Fixed bug reported to Gregor Hoffleit: by Andrew M. Kuchling · 26 years ago
  26. 21ef088 Need to initialize self->safe_constructors early on to prevent crash by Guido van Rossum · 26 years ago
  27. 732aa2f Gregor Hoffleit writes: by Guido van Rossum · 26 years ago
  28. 46e9705 Remove prototypes for PyOS_strto[u]l -- Chris Herborth. by Guido van Rossum · 26 years ago
  29. 5de5420 Needed to add DL_EXPORT to (redundant?) extern decl of module init function. by Guido van Rossum · 26 years ago
  30. e94e3fb Make VC++ 5.0 compiler happy. by Guido van Rossum · 26 years ago
  31. b057dd8 Correctly document atan2. by Guido van Rossum · 26 years ago
  32. 9c1201f Py_Main() must be DL_EXPORT too. by Guido van Rossum · 26 years ago
  33. c6e2290 Added Doc strings -- by Chris Petrilli. by Guido van Rossum · 26 years ago
  34. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  35. 50f385c Fix two small bugs; add DL_EXPORT() to initcPickle decl. by Guido van Rossum · 26 years ago
  36. 3b5330e Bernard Herzog pointed out that rl_parse_and_bind modifies its by Guido van Rossum · 26 years ago
  37. 053b8df New version from Jim Fulton: by Guido van Rossum · 26 years ago
  38. 7d9b413 New version from Jim Fulton: by Guido van Rossum · 26 years ago
  39. 185ead6 Doc strings by Chris Petrilli. by Guido van Rossum · 26 years ago
  40. e9bc62d RajGopal Srinivasan noted that the latest code doesn't work when by Guido van Rossum · 26 years ago
  41. b0d1b06 audio(7I) suggests that applications do the following to get the by Barry Warsaw · 26 years ago
  42. 3f200d7 Add note about compiling FORMS with -Dclear=__GLclear. by Guido van Rossum · 26 years ago
  43. 89733a8 Check in the changed version after running the stubber again -- this by Guido van Rossum · 26 years ago
  44. 605b93d On a recommendation from Sjoerd Mullender, add -Dclear=__GLclear to by Guido van Rossum · 26 years ago
  45. bf33830 Add a missing DECREF in an error exit. Submitted by Jonathan Giddy. by Guido van Rossum · 26 years ago
  46. d3a6a14 Doc strings by Chris Petrilli. Also added MD5Type object. by Guido van Rossum · 26 years ago
  47. a0deb64 No need to issue a fatal error if the PyDict_SetItemString fails; the by Guido van Rossum · 26 years ago
  48. fc6aba5 ACK! There was still an unescaped newline in a docstring. by Guido van Rossum · 26 years ago
  49. b39b90d Doc strings by Chris Petrilli. by Guido van Rossum · 26 years ago
  50. 41f0a98 Looks like I didn't test this interactively. The EventHook() code was by Guido van Rossum · 26 years ago
  51. dc1adab Patch by Jonathan Giddy (with some cleanup by me) to always use the by Guido van Rossum · 26 years ago
  52. 215193b There's no need to declare Tk_GetNumMainWindows() (and it breaks by Guido van Rossum · 26 years ago
  53. 7e48898 Use the t# format where appropriate. Greg Stein. by Guido van Rossum · 26 years ago
  54. 2a57004 Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. by Guido van Rossum · 26 years ago
  55. d076c73 Changes to support other object types besides strings by Guido van Rossum · 26 years ago
  56. c501583 Make gcc -Wall happy. by Guido van Rossum · 26 years ago
  57. 89bae99 Make gcc -Wall happy: Remove unused decls of getloclock() and is_lockobject(). by Guido van Rossum · 26 years ago
  58. c206873 Make gcc -Wall happy: by Guido van Rossum · 26 years ago
  59. e7adf3e Documented PYTHONOPTIMIZE; by Marc Lemburg. by Guido van Rossum · 26 years ago
  60. d5f6c22 Make the version variable static (it has no business being exported). by Guido van Rossum · 26 years ago
  61. 7fef86e Clarify sharedinstall comment by Guido van Rossum · 26 years ago
  62. d5bcf9a Andrew Dalke's implementation of string.count(). by Guido van Rossum · 26 years ago
  63. 573788e No need for (char *) cast from gdbm_strerror(). by Guido van Rossum · 26 years ago
  64. b6e2a99 Win32 port. Patches by Milton L. Hankins. by Guido van Rossum · 26 years ago
  65. 49b5606 Renamed thread.h to pythread.h. by Guido van Rossum · 26 years ago
  66. 2645241 Fixes for OS/2 by Jeff Rush. by Guido van Rossum · 26 years ago
  67. be70450 Removed some OS/2 #defines (now in the OS/2 specific config.h). by Guido van Rossum · 26 years ago
  68. 4690678 Get rid of the test for non-NULL thread state in EventHook; it can be by Guido van Rossum · 26 years ago
  69. 1b23676 When we have siginterrupt(), use it to disable restarting interrupted by Guido van Rossum · 26 years ago
  70. 0db4c94 Enable the 'new' module by default. by Guido van Rossum · 26 years ago
  71. 78694d9 Patches from Greg Stein to support 'P' format in struct module's by Guido van Rossum · 26 years ago
  72. ce11393 Remove some unused variables from gethostbyaddr_ex and gethostbyaddr, by Guido van Rossum · 26 years ago
  73. 76d1f96 Michael P. Reilly suggested this fix: makesetup wants to prepend by Guido van Rossum · 26 years ago
  74. 1645436 Now that we have standard (optional) long long support, the long long by Guido van Rossum · 26 years ago
  75. cfbaecc Y2K fix affecting asctime(), mktime(), strftime(). by Guido van Rossum · 26 years ago
  76. ce616e4 Enter Jim Fulton's latest version. He writes: by Jeremy Hylton · 26 years ago
  77. 541f241 Need mytime.h for Sleep(). by Guido van Rossum · 26 years ago
  78. d105523 Two fixes to find_class: by Jeremy Hylton · 26 years ago
  79. 549cb6e Added a module docstring (that's all this module needs). by Guido van Rossum · 26 years ago
  80. be10c20 Now include Python.h by Guido van Rossum · 26 years ago
  81. e2d81cd Jim Fulton's patches to get rid of the class_map(). by Guido van Rossum · 26 years ago
  82. 617bc19 In Win32 version of listdir(), when FindFirstFile() returns by Guido van Rossum · 26 years ago
  83. 954e3ca Removed unused variables. by Guido van Rossum · 26 years ago
  84. 227cf76 Undo a silly effect of a global substitution: the macintosh panic() by Guido van Rossum · 26 years ago
  85. bcc2074 Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  86. 7d896ab Added gethostbyname_ex(), which returns the same kind of data as by Guido van Rossum · 26 years ago
  87. 7f875ef parser__pickler(): Use Py_DECREF() when reference is known to be non-NULL. by Fred Drake · 26 years ago
  88. c964179 Patch by Jody Winston (with my changes) to add some of the "wait by Guido van Rossum · 26 years ago
  89. 923fece5 Better error messages when raising ValueError for int literals. (The by Guido van Rossum · 26 years ago
  90. 76310fc Make sure that at least one digit has been consumed in atoi(). by Guido van Rossum · 26 years ago
  91. 2a502d8 Use 'S' format character for the optional constructor argument, so we by Guido van Rossum · 26 years ago
  92. d58d764 Several changes to support inclusion of filename in relevent exceptions: by Barry Warsaw · 26 years ago
  93. 1ee36ff (pause_doc): Sun CC complains about newline in string literal by Barry Warsaw · 26 years ago
  94. 1a78553 Add test for failure of the getattr call in pcre_expand() -- it used by Guido van Rossum · 26 years ago
  95. 7589b71 I_getattr(), by Fred Drake · 26 years ago
  96. 43ff868 Temporarily get rid of the registration of Tcl_Finalize() as a by Guido van Rossum · 26 years ago
  97. 7859f87 Marc-Andre Lemburg's patch to support instance methods with other by Guido van Rossum · 26 years ago
  98. c821d1e Add a cast that a picky SGI compiler found was necessary. by Guido van Rossum · 26 years ago
  99. 9f29990 Fix a benign problem found by a picky SGI compiler (unreachable break by Guido van Rossum · 26 years ago
  100. 04e00a4 Fix benign problems found by a picky SGI compiler (unreachable break by Guido van Rossum · 26 years ago