Commit 76fe6271 authored by Jim Fulton's avatar Jim Fulton

Special case for no extension data

parent d39d53d5
...@@ -450,7 +450,10 @@ class IStorageTransactionMetaDataExtensionBytes(IStorageTransactionMetaData): ...@@ -450,7 +450,10 @@ class IStorageTransactionMetaDataExtensionBytes(IStorageTransactionMetaData):
and ``description`` attributes are bytes, not text. and ``description`` attributes are bytes, not text.
""" """
extension_bytes = Attribute( extension_bytes = Attribute(
"A bytes carrying a transaction's serialized extended_info data") """A bytes carrying a transaction's serialized extended_info data
This will be an empty bytes if there are no extension data.
""")
class IStorage(Interface): class IStorage(Interface):
"""A storage is responsible for storing and retrieving data of objects. """A storage is responsible for storing and retrieving data of objects.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment