[Zodb-checkins]
SVN: ZODB/branches/jim-zeo-blob/src/ZODB/Blobs/interfaces.py
Removed unused version argument to loadBlob.
Jim Fulton
jim at zope.com
Wed May 16 06:09:47 EDT 2007
Log message for revision 75798:
Removed unused version argument to loadBlob.
Changed:
U ZODB/branches/jim-zeo-blob/src/ZODB/Blobs/interfaces.py
-=-
Modified: ZODB/branches/jim-zeo-blob/src/ZODB/Blobs/interfaces.py
===================================================================
--- ZODB/branches/jim-zeo-blob/src/ZODB/Blobs/interfaces.py 2007-05-16 08:28:39 UTC (rev 75797)
+++ ZODB/branches/jim-zeo-blob/src/ZODB/Blobs/interfaces.py 2007-05-16 10:09:46 UTC (rev 75798)
@@ -60,9 +60,8 @@
def storeBlob(oid, oldserial, data, blob, version, transaction):
"""Stores data that has a BLOB attached."""
- def loadBlob(oid, serial, version):
- """Return the filename of the Blob data responding to this OID and
- serial.
+ def loadBlob(oid, serial):
+ """Return the filename of the Blob data for this OID and serial.
Returns a filename or None if no Blob data is connected with this OID.
More information about the Zodb-checkins
mailing list