Searched refs:stampid (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/lib-tk/ |
D | turtle.py | 2912 def _clearstamp(self, stampid): argument 2915 if stampid in self.stampItems: 2916 if isinstance(stampid, tuple): 2917 for subitem in stampid: 2920 self.screen._delete(stampid) 2921 self.stampItems.remove(stampid) 2924 item = ("stamp", stampid) 2934 def clearstamp(self, stampid): argument 2946 self._clearstamp(stampid)
|
/external/python/cpython3/Lib/ |
D | turtle.py | 3079 def _clearstamp(self, stampid): argument 3082 if stampid in self.stampItems: 3083 if isinstance(stampid, tuple): 3084 for subitem in stampid: 3087 self.screen._delete(stampid) 3088 self.stampItems.remove(stampid) 3091 item = ("stamp", stampid) 3101 def clearstamp(self, stampid): argument 3113 self._clearstamp(stampid)
|
/external/python/cpython2/Doc/library/ |
D | turtle.rst | 507 .. function:: clearstamp(stampid) 509 :param stampid: an integer, must be return value of previous 512 Delete stamp with given *stampid*.
|
/external/python/cpython3/Doc/library/ |
D | turtle.rst | 527 .. function:: clearstamp(stampid) 529 :param stampid: an integer, must be return value of previous 532 Delete stamp with given *stampid*.
|