Searched refs:picname (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/ |
D | turtle.py | 1461 def bgpic(self, picname=None): argument 1478 if picname is None: 1480 if picname not in self._bgpics: 1481 self._bgpics[picname] = self._image(picname) 1482 self._setbgpic(self._bgpic, self._bgpics[picname]) 1483 self._bgpicname = picname
|
/external/python/cpython2/Lib/lib-tk/ |
D | turtle.py | 1378 def bgpic(self, picname=None): argument 1395 if picname is None: 1397 if picname not in self._bgpics: 1398 self._bgpics[picname] = self._image(picname) 1399 self._setbgpic(self._bgpic, self._bgpics[picname]) 1400 self._bgpicname = picname
|
/external/python/cpython2/Doc/library/ |
D | turtle.rst | 1484 .. function:: bgpic(picname=None) 1486 :param picname: a string, name of a gif-file or ``"nopic"``, or ``None`` 1488 Set background image or return name of current backgroundimage. If *picname* 1489 is a filename, set the corresponding image as background. If *picname* is 1490 ``"nopic"``, delete background image, if present. If *picname* is ``None``,
|
/external/python/cpython3/Doc/library/ |
D | turtle.rst | 1605 .. function:: bgpic(picname=None) 1607 :param picname: a string, name of a gif-file or ``"nopic"``, or ``None`` 1609 Set background image or return name of current backgroundimage. If *picname* 1610 is a filename, set the corresponding image as background. If *picname* is 1611 ``"nopic"``, delete background image, if present. If *picname* is ``None``,
|