diff options
author | Guido van Rossum <guido@python.org> | 1990-12-26 15:33:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-12-26 15:33:00 (GMT) |
commit | debbe041e63fbe503acd9ecadd02eaecb3b14461 (patch) | |
tree | d9baa7657d25f83c0df8bfab8f118e2839cbaedb /Lib/stdwin/Abstract.py | |
parent | b156d7259bd8b2c84ca7f8e8e9e8e24d4a49870d (diff) | |
download | cpython-debbe041e63fbe503acd9ecadd02eaecb3b14461.zip cpython-debbe041e63fbe503acd9ecadd02eaecb3b14461.tar.gz cpython-debbe041e63fbe503acd9ecadd02eaecb3b14461.tar.bz2 |
Comment changes.
Diffstat (limited to 'Lib/stdwin/Abstract.py')
-rwxr-xr-x | Lib/stdwin/Abstract.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Lib/stdwin/Abstract.py b/Lib/stdwin/Abstract.py index d601527..9d9013b 100755 --- a/Lib/stdwin/Abstract.py +++ b/Lib/stdwin/Abstract.py @@ -1,6 +1,14 @@ # Abstract classes for parents and children. +# # Do not use as base class -- this is for documentation only. -# Note that the tree must be built top down. +# +# Note that the tree must be built top down (create the parent, +# then add the children). +# +# Also note that the creation methods are not standardized -- +# these have extra parameters dependent on the widget type. +# For historical reasons, button creation methods are called +# define() while split creation methods are called create(). class AbstractParent(): # |