1. 4690678 Get rid of the test for non-NULL thread state in EventHook; it can be by Guido van Rossum · 26 years ago
  2. 541f241 Need mytime.h for Sleep(). by Guido van Rossum · 26 years ago
  3. 227cf76 Undo a silly effect of a global substitution: the macintosh panic() by Guido van Rossum · 26 years ago
  4. 43ff868 Temporarily get rid of the registration of Tcl_Finalize() as a by Guido van Rossum · 26 years ago
  5. c821d1e Add a cast that a picky SGI compiler found was necessary. by Guido van Rossum · 26 years ago
  6. f766e23 There was an error check in a loop in PythonCmd which called by Guido van Rossum · 26 years ago
  7. 5e97783 # Note: a previous checkin message was lost because I can now use CVS by Guido van Rossum · 26 years ago
  8. 62320c9 # (My first checkin from Windows NT using remote CVS!) by Guido van Rossum · 26 years ago
  9. ad4db17 Fixed the EventHook() code so that it also works on Windows, sort of. by Guido van Rossum · 26 years ago
  10. 2a5119b On Windows, need #include <windows.h>; and it's MS_WINDOWS, not MS_WIN32. by Guido van Rossum · 26 years ago
  11. 00d9306 Changes to make it possible to write multi-threaded programs using by Guido van Rossum · 26 years ago
  12. 7bf1564 Use a different implementation of EventHook(). The new version by Guido van Rossum · 26 years ago
  13. b41addf Replace all calls to fprintf(stderr, ...) with calls to PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
  14. 597ac20 Trivial little change: timer tokens shouldn't have a Print() function, by Guido van Rossum · 26 years ago
  15. 212643f Still somewhat experimental speedup. This appears to speed up the by Guido van Rossum · 26 years ago
  16. 9d1b7ae Add a new method of interpreter objects, interpaddr(). This returns by Guido van Rossum · 26 years ago
  17. 2ea1c94 On the Mac a call to TkMacInitMenus is needed. Also, we pass by Guido van Rossum · 26 years ago
  18. 2621637 Add #ifdefs so Tcl_Finalize isn't referenced when it's not defined. by Guido van Rossum · 26 years ago
  19. 730806d Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  20. 1c0d315 Delete the 'exit' command from the Tcl interpreter -- it would allow by Guido van Rossum · 27 years ago
  21. 07e9fbf Register Tcl_Finalize as a Python exit handler. by Guido van Rossum · 27 years ago
  22. a59406a Darn. When thread support is disabled, the BEGIN/END macros don't by Guido van Rossum · 27 years ago
  23. b010544 Mac does support createfilehandler now (Jack) by Guido van Rossum · 27 years ago
  24. 0e8457c Fix EventHook (the trick to make widgets appear when using GNU by Guido van Rossum · 27 years ago
  25. 54e2091 Add an optional hack for threads in Tkinter. by Guido van Rossum · 27 years ago
  26. 83551bf Export names for the types defined by this module: TkappType and TkttType. by Guido van Rossum · 27 years ago
  27. 75626a3 Indent the #error so that a strict K&R cpp doesn't complain. by Guido van Rossum · 27 years ago
  28. d7a7100 Remove redundant decl for PyOS_InputHook. by Guido van Rossum · 27 years ago
  29. 5b02078 Alas, the thread support for Tk didn't work. Withdraw it, until I by Guido van Rossum · 27 years ago
  30. bad3c01 DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with by Guido van Rossum · 27 years ago
  31. 0d2390c Merge Mac and Windows mods (which mostly affect the same problem -- no by Guido van Rossum · 27 years ago
  32. 4462064 Renamed Py_input_hook to PyOS_InputHook. by Guido van Rossum · 27 years ago
  33. 02c0467 Rather unsatisfactory temporary hack to get it to run by Guido van Rossum · 27 years ago
  34. 0969d36 New mechanism for GNU readline interface, via module by Guido van Rossum · 27 years ago
  35. 35d4337 Functionality enhancement: allow other threads to use Tk commands by Guido van Rossum · 27 years ago
  36. 3e819a7 Compatibility with Tcl/Tk 8.0b*. by Guido van Rossum · 27 years ago
  37. 496f8f6 Removed remaining support for Tk versions below 4.0. by Guido van Rossum · 27 years ago
  38. 290283b Mac hack to make select() work again... by Guido van Rossum · 27 years ago
  39. 8813b58 On popular demand, re-enable the readline event hook. by Guido van Rossum · 27 years ago
  40. 8ec9e63 Adapt Mac specific code to new universal headers (I think -- this is by Guido van Rossum · 27 years ago
  41. 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 27 years ago
  42. 52fa3a6 Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 28 years ago
  43. fa701a8 reformatted by Barry Warsaw · 28 years ago
  44. 4004e21 Another fix for Split() -- don't refuse {"} but turn it into ". by Guido van Rossum · 28 years ago
  45. 0f86837 Check errors returned by recursive call to Split(). by Guido van Rossum · 28 years ago
  46. a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
  47. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  48. 07886d0 Rationalize MS #ifdefs by Guido van Rossum · 28 years ago
  49. c9970ee Call __initialize(), not __sinit() on Mac dynamic loading entry. by Guido van Rossum · 28 years ago
  50. ae92f01 Hacks to support being a Windows DLL by Guido van Rossum · 28 years ago
  51. bf0dc9f Add #define MAC_TCL for Mac. by Guido van Rossum · 28 years ago
  52. 7ffa761 Changes for Windows NT -- this time it works, with Tcl4.1p1 (p1!!!) etc. by Guido van Rossum · 28 years ago
  53. 97867b2 Add optional casts to free() calls. (Jack) by Guido van Rossum · 28 years ago
  54. 32aa1a7 getprogramname --> Py_GetProgramName by Guido van Rossum · 28 years ago
  55. 845547d Added CWI copyright. by Guido van Rossum · 28 years ago
  56. 6878436 Patch from the net for 4.1 file handler changes. by Guido van Rossum · 28 years ago
  57. 54ac189 Add __sinit() call according to Jack. by Guido van Rossum · 28 years ago
  58. ec22c92 Changes needed to build with Tcl/Tk beta 2! by Guido van Rossum · 29 years ago
  59. dfd428d Changes to make it work with Tcl/Tk beta 1. by Guido van Rossum · 29 years ago
  60. ad1f7ee get rid of bogus name for init_tkinter() by Guido van Rossum · 29 years ago
  61. 40b546d Initialize GUSI on the mac. by Jack Jansen · 29 years ago
  62. 34cc5c3 Fix to load needed resources on a mac by Jack Jansen · 29 years ago
  63. ba0311e Renamed module tkinter to _tkinter, moved source to _tkinter.c by Jack Jansen · 29 years ago
  64. 64b24fb clear quitMainLoop when we fall through the main loop by Guido van Rossum · 29 years ago
  65. 9722ad8 Mac changes by Guido van Rossum · 29 years ago
  66. e42fc2f use getnewargs where it makes sense by Guido van Rossum · 29 years ago
  67. b6fe704 add casts to malloc() calls by Guido van Rossum · 29 years ago
  68. a3c3f2c use PyCallable_Check; export TK_VERSION and TCL_VERSION strings; by Guido van Rossum · 30 years ago
  69. cd938fc Made some more things static, and other cleanup for new naming scheme by Guido van Rossum · 30 years ago
  70. a597dde cosmetic changes so these modules will work with the strict new naming scheme by Guido van Rossum · 30 years ago
  71. 062cfb0 added interface to Tk_DoOneEvent (R Lindsay Todd) by Guido van Rossum · 30 years ago
  72. 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 30 years ago
  73. f34cadd added timer and file callbacks and global mainloop and quit fns by Guido van Rossum · 30 years ago
  74. 602099a * various modules: #include "Python.h" and remove most remporary by Guido van Rossum · 30 years ago
  75. e4485b0 Setup.in: added tkinter; rearranged the definition of PYTHONPATH so by Guido van Rossum · 30 years ago
  76. 9bb4fd6 * tkintermodule.c (*FileHandler): generalize to arbitrary file ids by Guido van Rossum · 30 years ago
  77. e2ca9bd * tkintermodule.c: OK, I've fixed the "tty" problem. You're right by Guido van Rossum · 30 years ago
  78. d308e2b * tkintermodule.c by Guido van Rossum · 30 years ago
  79. 7687522 * tkintermodule.c (Tkapp_New): Remove #ifdef WITH_APPINIT. by Guido van Rossum · 30 years ago
  80. 1846882 Initial revision by Guido van Rossum · 30 years ago