Home | History | Annotate | Download | only in lib-tk

Lines Matching refs:stampid

2911     def _clearstamp(self, stampid):
2914 if stampid in self.stampItems:
2915 if isinstance(stampid, tuple):
2916 for subitem in stampid:
2919 self.screen._delete(stampid)
2920 self.stampItems.remove(stampid)
2923 item = ("stamp", stampid)
2933 def clearstamp(self, stampid):
2934 """Delete stamp with given stampid
2937 stampid - an integer, must be return value of previous stamp() call.
2945 self._clearstamp(stampid)