diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2019-01-18 00:00:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-18 00:00:51 (GMT) |
commit | cf27c06229eb4b8280bb5f2b93a57e33163411f4 (patch) | |
tree | 2f0e17eafc6add25d09c63784a04de33c6267d5c /Doc/library | |
parent | 56c16057c639acc2fb89c6b783425320f23a5f6c (diff) | |
download | cpython-cf27c06229eb4b8280bb5f2b93a57e33163411f4.zip cpython-cf27c06229eb4b8280bb5f2b93a57e33163411f4.tar.gz cpython-cf27c06229eb4b8280bb5f2b93a57e33163411f4.tar.bz2 |
bpo-23156: Remove obsolete tix install directions (GH-11595)
Tix was deprecated in 3.6 and the doc is wrong. New users should use ttk.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/tkinter.tix.rst | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Doc/library/tkinter.tix.rst b/Doc/library/tkinter.tix.rst index 11ed755..88b936c 100644 --- a/Doc/library/tkinter.tix.rst +++ b/Doc/library/tkinter.tix.rst @@ -76,17 +76,6 @@ the following:: root = tix.Tk() root.tk.eval('package require Tix') -If this fails, you have a Tk installation problem which must be resolved before -proceeding. Use the environment variable :envvar:`TIX_LIBRARY` to point to the -installed Tix library directory, and make sure you have the dynamic -object library (:file:`tix8183.dll` or :file:`libtix8183.so`) in the same -directory that contains your Tk dynamic object library (:file:`tk8183.dll` or -:file:`libtk8183.so`). The directory with the dynamic object library should also -have a file called :file:`pkgIndex.tcl` (case sensitive), which contains the -line:: - - package ifneeded Tix 8.1 [list load "[file join $dir tix8183.dll]" Tix] - Tix Widgets ----------- |