/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_stackviewer.py | 8 from idlelib.tree import TreeNode, ScrolledCanvas 41 isi(stackviewer.sc, ScrolledCanvas)
|
D | test_tree.py | 24 sc = tree.ScrolledCanvas(
|
/external/python/cpython2/Lib/idlelib/ |
D | ObjectBrowser.py | 14 from idlelib.TreeWidget import TreeItem, TreeNode, ScrolledCanvas 147 sc = ScrolledCanvas(root, bg="white", highlightthickness=0, takefocus=1)
|
D | StackViewer.py | 7 from idlelib.TreeWidget import TreeNode, TreeItem, ScrolledCanvas 14 sc = ScrolledCanvas(top, bg="white", highlightthickness=0)
|
D | ClassBrowser.py | 19 from idlelib.TreeWidget import TreeNode, TreeItem, ScrolledCanvas 61 sc = ScrolledCanvas(top, bg=background, highlightthickness=0, takefocus=1)
|
D | TreeWidget.py | 411 class ScrolledCanvas: class 458 sc = ScrolledCanvas(root, bg="white", highlightthickness=0, takefocus=1)
|
D | PyShell.py | 632 from idlelib.TreeWidget import ScrolledCanvas, TreeNode 636 sc = ScrolledCanvas(top, bg=background, highlightthickness=0)
|
/external/python/cpython3/Lib/idlelib/ |
D | debugobj.py | 13 from idlelib.tree import TreeItem, TreeNode, ScrolledCanvas 131 sc = ScrolledCanvas(top, bg="white", highlightthickness=0, takefocus=1)
|
D | stackviewer.py | 8 from idlelib.tree import TreeNode, TreeItem, ScrolledCanvas 14 sc = ScrolledCanvas(top, bg="white", highlightthickness=0)
|
D | browser.py | 18 from idlelib.tree import TreeNode, TreeItem, ScrolledCanvas 115 sc = ScrolledCanvas(top, bg=background, highlightthickness=0,
|
D | tree.py | 412 class ScrolledCanvas: class 458 sc = ScrolledCanvas(top, bg="white", highlightthickness=0, takefocus=1)
|
D | pyshell.py | 628 from idlelib.tree import ScrolledCanvas, TreeNode 632 sc = ScrolledCanvas(top, bg=background, highlightthickness=0)
|
/external/python/cpython2/Lib/lib-tk/ |
D | turtle.py | 353 class ScrolledCanvas(TK.Frame): class 452 __forwardmethods(ScrolledCanvas, TK.Canvas, '_canvas') 461 self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight) 507 if isinstance(cv, ScrolledCanvas): 785 if not isinstance(self.cv, ScrolledCanvas): 2434 elif isinstance(canvas, (ScrolledCanvas, Canvas)):
|
/external/python/cpython3/Lib/ |
D | turtle.py | 329 class ScrolledCanvas(TK.Frame): class 428 __forwardmethods(ScrolledCanvas, TK.Canvas, '_canvas') 437 self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight) 483 if isinstance(cv, ScrolledCanvas): 779 if not isinstance(self.cv, ScrolledCanvas): 2529 elif isinstance(canvas, (ScrolledCanvas, Canvas)):
|
/external/python/cpython2/Demo/turtle/ |
D | turtleDemo.py | 132 turtle._Screen._canvas = self._canvas = canvas = turtle.ScrolledCanvas(
|
/external/python/cpython3/Lib/turtledemo/ |
D | __main__.py | 236 turtle._Screen._canvas = self._canvas = canvas = turtle.ScrolledCanvas(
|
/external/python/cpython2/Doc/library/ |
D | turtle.rst | 45 :class:`ScrolledCanvas` as argument. It should be used when :mod:`turtle` is 57 on a :class:`TurtleScreen`. Its constructor needs a Canvas, ScrolledCanvas 1760 <turtle.ScrolledCanvas instance at 0x...> 1893 :param canvas: a :class:`Tkinter.Canvas`, a :class:`ScrolledCanvas` or a 1918 .. class:: ScrolledCanvas(master) 1920 :param master: some Tkinter widget to contain the ScrolledCanvas, i.e. 1923 Used by class Screen, which thus automatically provides a ScrolledCanvas as
|
/external/python/cpython3/Doc/library/ |
D | turtle.rst | 60 :class:`ScrolledCanvas` as argument. It should be used when :mod:`turtle` is 72 on a :class:`TurtleScreen`. Its constructor needs a Canvas, ScrolledCanvas 1886 <turtle.ScrolledCanvas object ...> 2019 :param canvas: a :class:`tkinter.Canvas`, a :class:`ScrolledCanvas` or a 2044 .. class:: ScrolledCanvas(master) 2046 :param master: some Tkinter widget to contain the ScrolledCanvas, i.e. 2049 Used by class Screen, which thus automatically provides a ScrolledCanvas as
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 4599 Resolve member name conflict in ScrolledCanvas.__init__.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 16114 - Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__.
|