[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/rdb/interfaces.py Renamed executeXXX() to executeZZZ() in documentation as to not confuse

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Jul 8 19:20:00 EDT 2004


Log message for revision 26272:
Renamed executeXXX() to executeZZZ() in documentation as to not confuse 
the grep function. 

Clarified a statement and removed XXX.



-=-
Modified: Zope3/trunk/src/zope/app/rdb/interfaces.py
===================================================================
--- Zope3/trunk/src/zope/app/rdb/interfaces.py	2004-07-08 23:18:42 UTC (rev 26271)
+++ Zope3/trunk/src/zope/app/rdb/interfaces.py	2004-07-08 23:20:00 UTC (rev 26272)
@@ -72,7 +72,7 @@
         describing one result column: (name, type_code, display_size,
         internal_size, precision, scale, null_ok). This attribute will be None
         for operations that do not return rows or if the cursor has not had an
-        operation invoked via the executeXXX() method yet.
+        operation invoked via the executeZZZ() method yet.
 
         The type_code can be interpreted by comparing it to the Type Objects
         specified in the section below. """)
@@ -141,7 +141,7 @@
         sequence, or None when no more data is available.
 
         An Error (or subclass) exception is raised if the previous call to
-        executeXXX() did not produce any result set or no call was issued yet.
+        executeZZZ() did not produce any result set or no call was issued yet.
         """
 
     def fetchmany(size=arraysize):
@@ -157,7 +157,7 @@
         returned.
 
         An Error (or subclass) exception is raised if the previous call to
-        executeXXX() did not produce any result set or no call was issued yet.
+        executeZZZ() did not produce any result set or no call was issued yet.
 
         Note there are performance considerations involved with the size
         parameter. For optimal performance, it is usually best to use the
@@ -171,7 +171,7 @@
         arraysize attribute can affect the performance of this operation.
 
         An Error (or subclass) exception is raised if the previous call to
-        executeXXX() did not produce any result set or no call was issued yet.
+        executeZZZ() did not produce any result set or no call was issued yet.
         """
 
 
@@ -203,7 +203,7 @@
         describing one result column: (name, type_code, display_size,
         internal_size, precision, scale, null_ok). This attribute will be None
         for operations that do not return rows or if the cursor has not had an
-        operation invoked via the executeXXX() method yet.
+        operation invoked via the executeZZZ() method yet.
 
         The type_code can be interpreted by comparing it to the Type Objects
         specified in the section below. """)
@@ -272,7 +272,7 @@
         sequence, or None when no more data is available. [6]
 
         An Error (or subclass) exception is raised if the previous call to
-        executeXXX() did not produce any result set or no call was issued yet.
+        executeZZZ() did not produce any result set or no call was issued yet.
         """
 
     def fetchmany(size=arraysize):
@@ -288,7 +288,7 @@
         returned.
 
         An Error (or subclass) exception is raised if the previous call to
-        executeXXX() did not produce any result set or no call was issued yet.
+        executeZZZ() did not produce any result set or no call was issued yet.
 
         Note there are performance considerations involved with the size
         parameter. For optimal performance, it is usually best to use the
@@ -302,7 +302,7 @@
         arraysize attribute can affect the performance of this operation.
 
         An Error (or subclass) exception is raised if the previous call to
-        executeXXX() did not produce any result set or no call was issued yet.
+        executeZZZ() did not produce any result set or no call was issued yet.
         """
 
 
@@ -416,12 +416,10 @@
 
 class IZopeConnection(IDBIConnection, IDBITypeInfoProvider):
 
-    # XXX What does the next paragraph mean?
-
     # An implementation of this object will be exposed to the
     # user. Therefore the Zope connection represents a connection in
     # the Zope sense, meaning that the object might not be actually
-    # connected to a database.
+    # connected to a real relational database.
 
     def cursor():
         """Return an IZopeCursor object."""



More information about the Zope3-Checkins mailing list