[Python-checkins] CVS: python/dist/src/Misc NEWS,1.334.2.3,1.334.2.4

Barry Warsaw bwarsaw@users.sourceforge.net
Fri, 14 Dec 2001 09:58:54 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv9273

Modified Files:
      Tag: r22rc1-branch
	NEWS 
Log Message:
A few more last minute updates discovered by a stroll through the cvs
log messages.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.334.2.3
retrieving revision 1.334.2.4
diff -C2 -d -r1.334.2.3 -r1.334.2.4
*** NEWS	2001/12/14 17:55:51	1.334.2.3
--- NEWS	2001/12/14 17:58:52	1.334.2.4
***************
*** 81,86 ****
--- 81,95 ----
  - The charset alias windows_1252 has been added.
  
+ - types.StringTypes is a tuple containing the defined string types;
+   usually this will be (str, unicode), but if Python was compiled
+   without Unicode support it will be just (str,).
+ 
+ - The pulldom and minidom modules were synchronized to PyXML.
+ 
  Tools/Demos
  
+ - A new script called Tools/scripts/google.py was added, which fires
+   off a search on Google.
+ 
  Build
  
***************
*** 120,123 ****
--- 129,137 ----
  - In unix-Python on Mac OS X (and darwin) sys.platform is now "darwin",
    without any trailing digits.
+ 
+ - Changed logic for finding python home in Mac OS X framework Pythons.
+   Now sys.executable points to the executable again, in stead of to
+   the shared library. The latter is used only for locating the python
+   home.