Re: Replacing Axiom Lists with a new list of Items

Robert Gravina <[email protected]> Sun, 2 Jul 2006 04:44:47 +0900
Newsgroups gmane.comp.python.quotient.dev
Message-ID <[email protected]>
> How else can I give Item objects collections of other Items then?  
> In all the examples I've seen, Lists were used.
>

Ah, I didn't realise that the List class wasn't needed, because we  
just do something like this (from the library.py example):
	
	    def books(self):
  	        return self.store.query(Book,
	                                Book.library == self)

But what are these other kinds of  sets and sequences you were  
talking of?