From debbe041e63fbe503acd9ecadd02eaecb3b14461 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 26 Dec 1990 15:33:00 +0000 Subject: [PATCH] Comment changes. --- Lib/lib-stdwin/Abstract.py | 10 +++++++++- Lib/stdwin/Abstract.py | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Lib/lib-stdwin/Abstract.py b/Lib/lib-stdwin/Abstract.py index d6015271d9f..9d9013be988 100644 --- a/Lib/lib-stdwin/Abstract.py +++ b/Lib/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(): # diff --git a/Lib/stdwin/Abstract.py b/Lib/stdwin/Abstract.py index d6015271d9f..9d9013be988 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(): #