[Zope-Checkins] CVS: ZODB3/ZODB - BaseStorage.py:1.21

Guido van Rossum guido@python.org
Wed, 28 Aug 2002 13:04:16 -0400


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

Modified Files:
	BaseStorage.py 
Log Message:
Document that the 'last' argument to new_oid() is not part of the
public API.


=== ZODB3/ZODB/BaseStorage.py 1.20 => 1.21 ===
--- ZODB3/ZODB/BaseStorage.py:1.20	Wed Aug 14 18:07:09 2002
+++ ZODB3/ZODB/BaseStorage.py	Wed Aug 28 13:04:16 2002
@@ -75,6 +75,7 @@
         return ''
 
     def new_oid(self, last=None):
+        # 'last' is only for internal use, not part of the public API
         if self._is_read_only:
             raise POSException.ReadOnlyError()
         if last is None: