[Zodb-checkins] CVS: ZODB3/ZODB - serialize.py:1.1.2.2

Jeremy Hylton cvs-admin at zope.org
Thu Oct 30 11:53:40 EST 2003


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

Modified Files:
      Tag: zodb33-devel-branch
	serialize.py 
Log Message:
Add note about dropping close() method when we get to Python 2.3.


=== ZODB3/ZODB/serialize.py 1.1.2.1 => 1.1.2.2 ===
--- ZODB3/ZODB/serialize.py:1.1.2.1	Wed Jul 16 15:11:02 2003
+++ ZODB3/ZODB/serialize.py	Thu Oct 30 11:53:36 2003
@@ -89,7 +89,9 @@
 
     The client is responsible for calling the close() method to avoid
     leaking memory.  The ObjectWriter uses a Pickler internally, and
-    Pickler objects do not participate in garbage collection.
+    Pickler objects do not participate in garbage collection.  (Note
+    that in Python 2.3 and higher, the close() method would be
+    unnecessary because Picklers participate in garbage collection.)
     """
 
     def __init__(self, jar=None):




More information about the Zodb-checkins mailing list