1. b39b90d Doc strings by Chris Petrilli. by Guido van Rossum · 26 years ago
  2. 41f0a98 Looks like I didn't test this interactively. The EventHook() code was by Guido van Rossum · 26 years ago
  3. dc1adab Patch by Jonathan Giddy (with some cleanup by me) to always use the by Guido van Rossum · 26 years ago
  4. 215193b There's no need to declare Tk_GetNumMainWindows() (and it breaks by Guido van Rossum · 26 years ago
  5. 7e48898 Use the t# format where appropriate. Greg Stein. by Guido van Rossum · 26 years ago
  6. 2a57004 Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy. by Guido van Rossum · 26 years ago
  7. d076c73 Changes to support other object types besides strings by Guido van Rossum · 26 years ago
  8. c501583 Make gcc -Wall happy. by Guido van Rossum · 26 years ago
  9. 89bae99 Make gcc -Wall happy: Remove unused decls of getloclock() and is_lockobject(). by Guido van Rossum · 26 years ago
  10. c206873 Make gcc -Wall happy: by Guido van Rossum · 26 years ago
  11. e7adf3e Documented PYTHONOPTIMIZE; by Marc Lemburg. by Guido van Rossum · 26 years ago
  12. d5f6c22 Make the version variable static (it has no business being exported). by Guido van Rossum · 26 years ago
  13. 7fef86e Clarify sharedinstall comment by Guido van Rossum · 26 years ago
  14. d5bcf9a Andrew Dalke's implementation of string.count(). by Guido van Rossum · 26 years ago
  15. 573788e No need for (char *) cast from gdbm_strerror(). by Guido van Rossum · 26 years ago
  16. b6e2a99 Win32 port. Patches by Milton L. Hankins. by Guido van Rossum · 26 years ago
  17. 49b5606 Renamed thread.h to pythread.h. by Guido van Rossum · 26 years ago
  18. 2645241 Fixes for OS/2 by Jeff Rush. by Guido van Rossum · 26 years ago
  19. be70450 Removed some OS/2 #defines (now in the OS/2 specific config.h). by Guido van Rossum · 26 years ago
  20. 4690678 Get rid of the test for non-NULL thread state in EventHook; it can be by Guido van Rossum · 26 years ago
  21. 1b23676 When we have siginterrupt(), use it to disable restarting interrupted by Guido van Rossum · 26 years ago
  22. 0db4c94 Enable the 'new' module by default. by Guido van Rossum · 26 years ago
  23. 78694d9 Patches from Greg Stein to support 'P' format in struct module's by Guido van Rossum · 26 years ago
  24. ce113931 Remove some unused variables from gethostbyaddr_ex and gethostbyaddr, by Guido van Rossum · 26 years ago
  25. 76d1f96 Michael P. Reilly suggested this fix: makesetup wants to prepend by Guido van Rossum · 26 years ago
  26. 1645436 Now that we have standard (optional) long long support, the long long by Guido van Rossum · 26 years ago
  27. cfbaecc Y2K fix affecting asctime(), mktime(), strftime(). by Guido van Rossum · 26 years ago
  28. ce616e4 Enter Jim Fulton's latest version. He writes: by Jeremy Hylton · 26 years ago
  29. 541f241 Need mytime.h for Sleep(). by Guido van Rossum · 26 years ago
  30. d105523 Two fixes to find_class: by Jeremy Hylton · 26 years ago
  31. 549cb6e Added a module docstring (that's all this module needs). by Guido van Rossum · 26 years ago
  32. be10c20 Now include Python.h by Guido van Rossum · 26 years ago
  33. e2d81cd Jim Fulton's patches to get rid of the class_map(). by Guido van Rossum · 26 years ago
  34. 617bc19 In Win32 version of listdir(), when FindFirstFile() returns by Guido van Rossum · 26 years ago
  35. 954e3ca Removed unused variables. by Guido van Rossum · 26 years ago
  36. 227cf76 Undo a silly effect of a global substitution: the macintosh panic() by Guido van Rossum · 26 years ago
  37. bcc2074 Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  38. 7d896ab Added gethostbyname_ex(), which returns the same kind of data as by Guido van Rossum · 26 years ago
  39. 7f875ef parser__pickler(): Use Py_DECREF() when reference is known to be non-NULL. by Fred Drake · 26 years ago
  40. c964179 Patch by Jody Winston (with my changes) to add some of the "wait by Guido van Rossum · 26 years ago
  41. 923fece5 Better error messages when raising ValueError for int literals. (The by Guido van Rossum · 26 years ago
  42. 76310fc Make sure that at least one digit has been consumed in atoi(). by Guido van Rossum · 26 years ago
  43. 2a502d8 Use 'S' format character for the optional constructor argument, so we by Guido van Rossum · 26 years ago
  44. d58d764 Several changes to support inclusion of filename in relevent exceptions: by Barry Warsaw · 26 years ago
  45. 1ee36ff (pause_doc): Sun CC complains about newline in string literal by Barry Warsaw · 26 years ago
  46. 1a78553 Add test for failure of the getattr call in pcre_expand() -- it used by Guido van Rossum · 26 years ago
  47. 7589b71 I_getattr(), by Fred Drake · 26 years ago
  48. 43ff868 Temporarily get rid of the registration of Tcl_Finalize() as a by Guido van Rossum · 26 years ago
  49. 7859f87 Marc-Andre Lemburg's patch to support instance methods with other by Guido van Rossum · 26 years ago
  50. c821d1e Add a cast that a picky SGI compiler found was necessary. by Guido van Rossum · 26 years ago
  51. 9f29990 Fix a benign problem found by a picky SGI compiler (unreachable break by Guido van Rossum · 26 years ago
  52. 04e00a4 Fix benign problems found by a picky SGI compiler (unreachable break by Guido van Rossum · 26 years ago
  53. c69bac5 Fix benign problems found by a picky SGI compiler (unreachable break by Guido van Rossum · 26 years ago
  54. eaa1ed6 Fix some problems that a picky SGI compiler reported. Two were benign by Guido van Rossum · 26 years ago
  55. 82a5c66 Added copious docstrings, plus two minor layout tweaks. by Guido van Rossum · 26 years ago
  56. d20781b On Windows, put the select file descriptor arrays on the heap. by Guido van Rossum · 26 years ago
  57. 39ef227 Unsigned 1 and 2 byte sized formats shouldn't result in long integer values! by Guido van Rossum · 26 years ago
  58. 911ec18 # Added missing semicolon (was #ifdef'ed out in edit on Windows). by Guido van Rossum · 26 years ago
  59. 1d8fb2d Added doc strings. by Guido van Rossum · 26 years ago
  60. 0ef577b Added doc strings. by Guido van Rossum · 26 years ago
  61. d2264bb # Remove an extra blank line from a doc string. by Guido van Rossum · 26 years ago
  62. 75e9fc3 Added doc strings. Also export LockType from the modoule, and give it by Guido van Rossum · 26 years ago
  63. 5cd70f4 Added <ctype.h>, needed for Windows. by Guido van Rossum · 26 years ago
  64. f766e23 There was an error check in a loop in PythonCmd which called by Guido van Rossum · 26 years ago
  65. 5e97783 # Note: a previous checkin message was lost because I can now use CVS by Guido van Rossum · 26 years ago
  66. 62320c9 # (My first checkin from Windows NT using remote CVS!) by Guido van Rossum · 26 years ago
  67. ad4db17 Fixed the EventHook() code so that it also works on Windows, sort of. by Guido van Rossum · 26 years ago
  68. b3f9f4b On Windows, make the pipe() call return Unix file descriptors instead by Guido van Rossum · 26 years ago
  69. e7c4193 In tcsetattr(), first initialize the mode structure by calling by Guido van Rossum · 26 years ago
  70. 87ce7bb Added strptime, if it exists. Modified after a patch by Jesse Hallio. by Guido van Rossum · 26 years ago
  71. 3c8c598 Sorry, the initializer for ob_type must really be NULL, by Guido van Rossum · 26 years ago
  72. 2a5119b On Windows, need #include <windows.h>; and it's MS_WINDOWS, not MS_WIN32. by Guido van Rossum · 26 years ago
  73. 00d9306 Changes to make it possible to write multi-threaded programs using by Guido van Rossum · 26 years ago
  74. 578de30 Some systems (e.g. Linux) use enums for some symbols (like IPPROTO_IP) by Guido van Rossum · 26 years ago
  75. d3dbb38 get_long(): Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred(...). by Fred Drake · 26 years ago
  76. bebc97f t_bootstrap(): Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred(...). by Fred Drake · 26 years ago
  77. 764b984 Use PyErr_ExceptionMatches(...) instead of PyErr_Occurred() == ... in two by Fred Drake · 26 years ago
  78. 7bf1564 Use a different implementation of EventHook(). The new version by Guido van Rossum · 26 years ago
  79. 832f6d2 Add an alias (and preferred name) "contains" for "sequenceIncludes". by Guido van Rossum · 26 years ago
  80. b88679b I think there was a tiny bug in new_function() -- the 'defaults' by Guido van Rossum · 26 years ago
  81. b1ed9c5 PySequence_In() -> PySequence_Contains(). by Guido van Rossum · 26 years ago
  82. 7df115d Make sure that no use of a function pointer gotten from a by Guido van Rossum · 26 years ago
  83. a88c5f3 Correct bug doc string (discovered by Berthold Hoellmann): by Guido van Rossum · 26 years ago
  84. fa1fb7d When a .o file is an absolute pathname, assume it's a file for which by Guido van Rossum · 26 years ago
  85. 4ccda15 strop_replace(): balk if the pattern string is empty. by Guido van Rossum · 26 years ago
  86. ed33a3f whichmodule(): remove redundant PyErr_Clear(); add explicit setting by Guido van Rossum · 26 years ago
  87. 02759c0 Don't delete glmodule.c on 'make clobber' (it's a checked in file!). by Guido van Rossum · 26 years ago
  88. b41addf Replace all calls to fprintf(stderr, ...) with calls to PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
  89. 597ac20 Trivial little change: timer tokens shouldn't have a Print() function, by Guido van Rossum · 26 years ago
  90. ed3da23 parser_compare_nodes(): Corrected a minor type error; eliminate one GCC by Fred Drake · 26 years ago
  91. ae94cf2 Fix by Sean Reifschneider: by Guido van Rossum · 26 years ago
  92. 821a5e4 Added URLs for zlib's home page and the Windows DLL's home page . by Guido van Rossum · 26 years ago
  93. dda6696 AMK's revised version of the previous patch. by Guido van Rossum · 26 years ago
  94. a5e54d0 Use (void) to throw away a function result, not (void *) ! by Guido van Rossum · 26 years ago
  95. 302be44 When following symlinks to the real executable, use a loop so a by Guido van Rossum · 26 years ago
  96. 212643f Still somewhat experimental speedup. This appears to speed up the by Guido van Rossum · 26 years ago
  97. 9d1b7ae Add a new method of interpreter objects, interpaddr(). This returns by Guido van Rossum · 26 years ago
  98. 268397f Made lint a bit happier. by Fred Drake · 26 years ago
  99. 2ea1c94 On the Mac a call to TkMacInitMenus is needed. Also, we pass by Guido van Rossum · 26 years ago
  100. 19efc5f Add a declaration for strdup() for the Mac. (Jack) by Guido van Rossum · 26 years ago