[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Caching - ICache.py:1.2
Marius Gedminas
mgedmin@codeworks.lt
Thu, 3 Oct 2002 05:51:29 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/Caching
In directory cvs.zope.org:/tmp/cvs-serv19708
Modified Files:
ICache.py
Log Message:
Missing colon
=== Zope3/lib/python/Zope/App/Caching/ICache.py 1.1 => 1.2 ===
--- Zope3/lib/python/Zope/App/Caching/ICache.py:1.1 Thu Oct 3 05:41:23 2002
+++ Zope3/lib/python/Zope/App/Caching/ICache.py Thu Oct 3 05:51:29 2002
@@ -28,7 +28,7 @@
None, invalidates all entries for the object.
"""
- def query(ob, view_name="", keywords=None, mtime_func=None, default=None)
+ def query(ob, view_name="", keywords=None, mtime_func=None, default=None):
"""Returns the cached data previously stored by set().
ob is the content object from which the object ID, modification
@@ -42,4 +42,3 @@
def set(data, ob, view_name="", keywords=None, mtime_func=None):
"""Stores the result of executing an operation."""
-