Commit 5a4a9d6d authored by Guido van Rossum's avatar Guido van Rossum

Rename update() back to sync(). It is actually referenced by

ZODB/Connection.py -- the Connection class has a sync() method which
calls the sync() method on the storage if it exists.
parent 5e977514
......@@ -13,7 +13,7 @@
##############################################################################
"""Network ZODB storage client
$Id: ClientStorage.py,v 1.66 2002/09/23 19:08:14 gvanrossum Exp $
$Id: ClientStorage.py,v 1.67 2002/09/23 20:24:54 gvanrossum Exp $
"""
# XXX TO DO
......@@ -187,7 +187,7 @@ class ClientStorage:
else:
return 1
def update(self):
def sync(self):
"""Handle any pending invalidation messages."""
self._server._update()
......
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