From 26793cf43a1dbdd90f6e1d6c3b31f0cb0b4f211b Mon Sep 17 00:00:00 2001 From: helmutm Date: Fri, 27 Jan 2006 08:51:45 +0000 Subject: [PATCH] Refactored ordered container stuff out of loops package and put into cybertools.container git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@1038 fd906abe-77d9-0310-91a1-e0d9ade77398 --- container/README.txt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/container/README.txt b/container/README.txt index c94e890..53b9360 100644 --- a/container/README.txt +++ b/container/README.txt @@ -5,12 +5,7 @@ Ordered Containers Let's add an ordered container and place some objects in it: - >>> from zope.interface import implements - >>> from zope.app.container.interfaces import IOrderedContainer - >>> import zope.app.container.ordered - >>> class OrderedContainer(zope.app.container.ordered.OrderedContainer): - ... implements(IOrderedContainer) - + >>> from zope.app.container.ordered import OrderedContainer >>> c1 = OrderedContainer() >>> c1['sub1'] = OrderedContainer() >>> c1['sub2'] = OrderedContainer()