]> granicus.if.org Git - python/commitdiff
2.3b2 on Windows will ship with Tcl/Tk 8.4.3. Note: this still didn't
authorTim Peters <tim.peters@gmail.com>
Sun, 22 Jun 2003 01:42:20 +0000 (01:42 +0000)
committerTim Peters <tim.peters@gmail.com>
Sun, 22 Jun 2003 01:42:20 +0000 (01:42 +0000)
fix the hangs on Win98SE when starting IDLE via "python" from a DOS box,
but did appear to make them harder to provoke.  I closed that bug report
as being hopeless (and if someone wants to open it again, don't dare
assign it to me again <0.1 wink>).

Misc/NEWS
PCbuild/readme.txt

index 2d2c8a08daf44611096f3f44e4baadecd10597ae..e3dc76304ac0bbc730623b70ec1193e359f1a080 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -170,6 +170,8 @@ Tests
 Windows
 -------
 
+- The Windows installer ships with Tcl/Tk 8.4.3 (upgraded from 8.4.1).
+
 - The installer always suggested that Python be installed on the C:
   drive, due to a hardcoded "C:" generated by the Wise installation
   wizard.  People with machines where C: is not the system drive
index 07f9b2ab7be810ce9503bab8809dc830686faacf..5d9dd8307c387e4a72dd57d7cd24992335723d1a 100644 (file)
@@ -76,23 +76,23 @@ unpack into new subdirectories of dist\.
 
 _tkinter
     Python wrapper for the Tk windowing system.  Requires building
-    Tcl/Tk first.  Following are instructions for Tcl/Tk 8.4.1:
+    Tcl/Tk first.  Following are instructions for Tcl/Tk 8.4.3:
 
     Get source
     ----------
     Go to
         http://prdownloads.sourceforge.net/tcl/
     and download
-        tcl841-src.zip
-        tk841-src.zip
+        tcl843-src.zip
+        tk843-src.zip
     Unzip into
-        dist\tcl8.4.1\
-        dist\tk8.4.1\
+        dist\tcl8.4.3\
+        dist\tk8.4.3\
     respectively.
 
-    Build Tcl first (done here w/ MSVC 6 on Win2K; also Win98SE)
+    Build Tcl first (done here w/ MSVC 6 on Win98SE)
     ---------------
-    cd dist\tcl8.4.1\win
+    cd dist\tcl8.4.3\win
     run vcvars32.bat [necessary even on Win2K]
     nmake -f makefile.vc
     nmake -f makefile.vc INSTALLDIR=..\..\tcl84 install
@@ -100,16 +100,19 @@ _tkinter
     XXX Should we compile with OPTS=threads?
 
     XXX Some tests failed in "nmake -f makefile.vc test".
+    XXX all.tcl:  Total 10480   Passed 9743    Skipped 719     Failed 18
 
     Build Tk
     --------
-    cd dist\tk8.4.1\win
-    nmake -f makefile.vc TCLDIR=..\..\tcl8.4.1
-    nmake -f makefile.vc TCLDIR=..\..\tcl8.4.1 INSTALLDIR=..\..\tcl84 install
+    cd dist\tk8.4.3\win
+    nmake -f makefile.vc TCLDIR=..\..\tcl8.4.3
+    nmake -f makefile.vc TCLDIR=..\..\tcl8.4.3 INSTALLDIR=..\..\tcl84 install
 
     XXX Should we compile with OPTS=threads?
 
-    XXX Some tests failed in "nmake -f makefile.vc test".
+    XXX I have no idea whether "nmake -f makefile.vc test" passed or
+    XXX failed.  It popped up tons of little windows, and did lots of
+    XXX stuff, and nothing blew up.
 
     XXX Our installer copies a lot of stuff out of the Tcl/Tk install
     XXX directory.  Is all of that really needed for Python use of Tcl/Tk?