From: Lawrence D'Oliveiro on
In message <mailman.1996.1281605023.1673.python-list(a)python.org>, Jean-
Michel Pichavant wrote:

> for mcNugget in range(0,10):
> sendTo(trashbin)

Ah, but should that be

mcNugget.sendTo(trashbin)

or

trashbin.insert(mcNugget)

?