]> granicus.if.org Git - python/commit
Add an optional hack for threads in Tkinter.
authorGuido van Rossum <guido@python.org>
Sun, 28 Sep 1997 05:52:41 +0000 (05:52 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 28 Sep 1997 05:52:41 +0000 (05:52 +0000)
commit54e2091ba25c449c0b591d92d40ddcb2a9cb153e
tree23eaa1a94f7a3f67743a4baac0075f5c42f62f1d
parenta9f02b8badc3d8c31c10cdd3cebffaa5d2d10c23
Add an optional hack for threads in Tkinter.
This one works!  However it requires using a modified version of
tclNotify.c (provided), which requires access to the Tcl source
to compile it.  In order to enable this hack, add the following
to the Setup line for _tkinter:
   tclNotify.c -DHAVE_PYTCL_WAITUNTILEVENT -I$(TCL)/generic
where TCL points to the source tree of Tcl 8.0.  Other versions
of Tcl are not supported.

The tclNotify.c file is copyrighted by Sun Microsystems; the
licensing terms are in the file license.terms.  According to this
file, no further permission to distribute this is required,
provided the file license.terms is included.  Hence, I am checking
that in, too.
Modules/_tkinter.c
Modules/license.terms [new file with mode: 0644]
Modules/tclNotify.c [new file with mode: 0644]