From 63b9a45624c9ea96041caec78c2201bcc829050a Mon Sep 17 00:00:00 2001 From: helmutm Date: Tue, 21 Nov 2006 20:00:02 +0000 Subject: [PATCH] added index package for multikey dictionaries git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1511 fd906abe-77d9-0310-91a1-e0d9ade77398 --- index/README.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/index/README.txt b/index/README.txt index bf7dc77..77a6626 100644 --- a/index/README.txt +++ b/index/README.txt @@ -56,9 +56,11 @@ Index entries that are present in the stored dictionaries must always match: >>> registry[('index.html', 'topic', 'zope3', 'Custom')] 'index.html for type "topic"' - >>> registry.get(('edit.html', 'task', 'bugfixes', 'Custom')) + >>> registry.get(('edit.html', 'task', 'bugfixes', 'Custom')) is None + True >>> registry[('edit.html', None, None, 'Custom')] = 'edit.html for Custom skin' - >>> registry.get(('edit.html', 'task', 'bugfixes', '')) + >>> registry.get(('edit.html', 'task', 'bugfixes', '')) is None + True