below, what is being yielded,
the key or the value in the dictionary? I refer to this for loop here:
for subject in self._pos[predicate][ojbect]: yield (subject, predicate,
object)
Thanks for any help and insights into this,
Bruce
--
++++++++
i hang my head in shame.
On 10/12/06, Gabriel Genellina <[EMAIL PROTECTED]> wrote:
> At Thursday 12/10/2006 17:44, [EMAIL PROTECTED] wrote:
>
> > > > > fun median {
> > > > > var x = 0.
> > > > > while( *p++) {
> > > > > if( (*p) > x) x = *p.
> > > > > }
> > > > > return x.
> > > > >