]> granicus.if.org Git - python/commitdiff
Added Windows news. Also repeated 1.6 Windows news since most people getting
authorTim Peters <tim.peters@gmail.com>
Tue, 5 Sep 2000 20:15:25 +0000 (20:15 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 5 Sep 2000 20:15:25 +0000 (20:15 +0000)
2.0b1 for Windows will not have bothered getting 1.6.  Also changed
"Changed, New, Obsolete Tools" to say "None" since nobody had put an entry
there.

Misc/NEWS

index ea2d21e1f4247db6fd02ff036a771844092b08d9..5252a9dae3422750c8a8faaac816026aed403d1c 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -351,7 +351,7 @@ HTTP server.
 Tkinter -- optimization of function flatten
 
 urllib -- scans environment variables for proxy configuration,
-e.g. http_proxy. 
+e.g. http_proxy.
 
 whichdb -- recognizes dumbdbm format
 
@@ -367,7 +367,7 @@ poly, zmod, strop, util, whatsound.
 Changed, New, Obsolete Tools
 ----------------------------
 
-XXX: are there any?  If not, say "None" here.
+None.
 
 
 C-level Changes
@@ -418,4 +418,35 @@ extra flag argument that tells them to close the file when done.
 
 XXX There were other API changes that should be fleshed out here.
 
+
+Windows Changes
+---------------
+
+New popen2/popen3/peopen4 in os module (see Changed Modules above).
+
+os.popen is much more usable on Windows 95 and 98.  See Microsoft
+Knowledge Base article Q150956.  The Win9x workaround described there
+is implemented by the new w9xpopen.exe helper in the root of your
+Python installation.  Note that Python uses this internally; it is not
+a standalone program.
+
+Administrator privileges are no longer required to install Python
+on Windows NT or Windows 2000.  If you have administrator privileges,
+Python's registry info will be written under HKEY_LOCAL_MACHINE.
+Otherwise the installer backs off to writing Python's registry info
+under HKEY_CURRENT_USER.  The latter is sufficent for all "normal"
+uses of Python, but will prevent some advanced uses from working
+(for example, running a Python script as an NT service, or possibly
+from CGI).
+
+[This was new in 1.6] The installer no longer runs a separate Tcl/Tk
+installer; instead, it installs the needed Tcl/Tk files directly in the
+Python directory.  If you already have a Tcl/Tk installation, this
+wastes some disk space (about 4 Megs) but avoids problems with
+conflicting Tcl/Tk installations, and makes it much easier for Python
+to ensure that Tcl/Tk can find all its files.
+
+[This was new in 1.6] The Windows installer now installs by default in
+\Python20\ on the default volume, instead of \Program Files\Python-2.0\.
+
 ======================================================================