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

Lines Matching defs:module

2 # turtle.py: a Tkinter based turtle graphics module for Python
40 This module is an extended reimplementation of turtle.py from the
46 interactively when using the module from within IDLE run with
90 The default configuration mimics the appearance of the old turtle module.
92 - If configured appropriately the module reads in docstrings from a docstring
116 from math import * ## for compatibility with old turtle module
3765 module = __import__(modname)
3766 docsdict = module.docsdict
3883 """Demo of old turtle.py - module"""