[Zope-Checkins] CVS: Products/AdaptableStorage/gateway_fs/interfaces - IFSConnection.py:1.4
Shane Hathaway
shane@zope.com
Tue, 7 Jan 2003 14:09:43 -0500
Update of /cvs-repository/Products/AdaptableStorage/gateway_fs/interfaces
In directory cvs.zope.org:/tmp/cvs-serv18377/gateway_fs/interfaces
Modified Files:
IFSConnection.py
Log Message:
Removed unused features to simplify maintenance
=== Products/AdaptableStorage/gateway_fs/interfaces/IFSConnection.py 1.3 => 1.4 ===
--- Products/AdaptableStorage/gateway_fs/interfaces/IFSConnection.py:1.3 Mon Jan 6 18:17:42 2003
+++ Products/AdaptableStorage/gateway_fs/interfaces/IFSConnection.py Tue Jan 7 14:09:40 2003
@@ -23,7 +23,7 @@
"""Simple filesystem connection (with textual annotations).
"""
- def writeSection(subpath, section_name, data, mode=0):
+ def writeSection(subpath, section_name, data):
""
def writeNodeType(subpath, data):
@@ -31,16 +31,6 @@
def writeData(subpath, data):
""
-
- def unwriteData(subpath):
- """Reverts a previous writeData(), returning the old data.
-
- writeData() refuses to write conflicting data (for safety).
- But occasionally a file depends on data that's not available
- all at once. This method makes it possible to override a
- previous write operation within a transaction. If no data was
- written, this method returns None.
- """
def readSection(subpath, section_name, default=None):
""