[Zodb-checkins] CVS: ZODB3/ZODB - Connection.py:1.84

Barry Warsaw barry@wooz.org
Tue, 21 Jan 2003 16:02:31 -0500


Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv8002

Modified Files:
	Connection.py 
Log Message:
Typos


=== ZODB3/ZODB/Connection.py 1.83 => 1.84 ===
--- ZODB3/ZODB/Connection.py:1.83	Fri Jan 17 12:23:14 2003
+++ ZODB3/ZODB/Connection.py	Tue Jan 21 16:02:28 2003
@@ -33,11 +33,11 @@
 global_code_timestamp = 0
 
 def updateCodeTimestamp():
-    '''
-    Called after changes are made to persistence-based classes.
-    Causes all connection caches to be re-created as the
-    connections are reopened.
-    '''
+    """Called after changes are made to persistence-based classes.
+
+    Causes all connection caches to be re-created as the connections are
+    reopened.
+    """
     global global_code_timestamp
     global_code_timestamp = time()
 
@@ -47,8 +47,7 @@
     """Object managers for individual object space.
 
     An object space is a version of collection of objects.  In a
-    multi-threaded application, each thread get's it's own object
-    space.
+    multi-threaded application, each thread gets its own object space.
 
     The Connection manages movement of objects in and out of object storage.
     """