From 7a371905774edebc2afc52f52919c51fa432ef82 Mon Sep 17 00:00:00 2001 From: Axel Voitier Date: Sat, 3 Jul 2021 17:28:48 +0200 Subject: [PATCH] Update README.md --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3b8b4ec..c019c6a 100644 --- a/README.md +++ b/README.md @@ -91,9 +91,10 @@ my_content.remove(child1) ## Other lookups -* `lookups.fixed`: Simple unmodifiable lookup. Content is set at creation time. -* `lookups.singleton`: Unmodifiable lookup that contains just one fixed object. -* `lookups.EmptyLookup`: A lookup containing nothing. -* `lookups.EntryPointLookup`: A lookup loading its instances from a setuptools entry point group (ie. provided by any installed package). -* `lookups.DelegatedLookup`: A lookup that redirects to another (dynamic) lookup, through a LookupProvider. * `lookups.ProxyLookup`: A lookup that merge results from several lookups. +* `lookups.DelegatedLookup`: A lookup that redirects to another (dynamic) lookup, through a LookupProvider. +* `lookups.EntryPointLookup`: A lookup loading its instances from a setuptools entry point group (ie. provided by any installed package). +* `lookups.fixed`: Simple unmodifiable lookup. Content is set at creation time. Will be one of: + * `lookup.SimpleLookup`: A basic lookup with a static content. + * `lookups.singleton`: Unmodifiable lookup that contains just one fixed object. + * `lookups.EmptyLookup`: A lookup containing nothing.