commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

r5133 - trunk/gnue-appserver/src


From: reinhard
Subject: r5133 - trunk/gnue-appserver/src
Date: Thu, 19 Feb 2004 02:26:19 -0600 (CST)

Author: reinhard
Date: 2004-02-19 02:26:18 -0600 (Thu, 19 Feb 2004)
New Revision: 5133

Modified:
   trunk/gnue-appserver/src/data.py
Log:
Picking some nits.


Modified: trunk/gnue-appserver/src/data.py
===================================================================
--- trunk/gnue-appserver/src/data.py    2004-02-18 23:00:08 UTC (rev 5132)
+++ trunk/gnue-appserver/src/data.py    2004-02-19 08:26:18 UTC (rev 5133)
@@ -29,7 +29,7 @@
 # Cache class
 # =============================================================================
 
-class cache:
+class _cache:
   """
   This class is acutally not more than a 3-dimensional array with the
   dimensions called "table", "row", and "field". Any combination of these can
@@ -306,7 +306,7 @@
   def __init__ (self, connections, database):
     self.__connections = connections
     self.__database = database
-    self.__cache = cache ()
+    self.__cache = _cache ()
 
   # ---------------------------------------------------------------------------
   # Create a recordset from a query
@@ -545,7 +545,9 @@
 
 class record:
   """
-  This class stands for a record in a database table.
+  This class stands for a record in a database table. An instance of this class
+  can be created via the recordset.firstRecord() and recordset.nextRecord()
+  methods.
   """
 
   # ---------------------------------------------------------------------------





reply via email to

[Prev in Thread] Current Thread [Next in Thread]