[Zope-Checkins] CVS: Products/DCOracle2 - CHANGELOG:1.43 install.py:1.3

Matthew T. Kromer matt@zope.com
Tue, 29 Jan 2002 13:26:31 -0500


Update of /cvs-repository/Products/DCOracle2
In directory cvs.zope.org:/tmp/cvs-serv1663

Modified Files:
	CHANGELOG install.py 
Log Message:
Updates


=== Products/DCOracle2/CHANGELOG 1.42 => 1.43 ===
 
 Post PR1	
-	     o  Return None if a SQL_DAT (date) is zero length, thanks
-	        to Uve Hoffmann for finding it.
  	     o  Return None on ALL result fetches if they are 0 length,
 	        regardless of the type (may be bad).  Uwe Hoffmann found
 		a definate problem with DATEs, and INTs seem to be suffering
@@ -209,6 +207,8 @@
 	     o  Added per-cursor and per-LOB error handles, so routines
 	        don't get the wrong error message because they used the
 		connection's error handle
+	     o  Tweaked binary installer to only care about minor level
+	        of python 2.1
 
 Desired Features Not Yet Implemented:
 


=== Products/DCOracle2/install.py 1.2 => 1.3 ===
 platform = string.upper(sys.platform)
 version = string.split(sys.version)[0]
+if version[0:3] == "2.1": version = "2.1"
 ORACLE_HOME = None
 
 if platform[:5] == "LINUX":