Home | History | Annotate | Download | only in guido

Lines Matching full:pile

19     They also belong to at most one ``pile'' of objects, and can be
20 transferred between piles (or removed from their pile).
27 double-clicked. The behavior may actually be determined by the pile
39 self.pile = None
65 def transfer(self, pile):
66 if self.pile:
67 self.pile.delete(self)
68 self.pile = None
69 self.pile = pile
70 if self.pile:
71 self.pile.add(self)
79 """An object to serve as the bottom of a pile."""
88 class Pile:
127 class MovingPile(Pile):
130 Pile.bindhandlers(self)