]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Comment changes.
authorGuido van Rossum <guido@python.org>
Wed, 26 Dec 1990 15:33:00 +0000 (15:33 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 26 Dec 1990 15:33:00 +0000 (15:33 +0000)
Lib/lib-stdwin/Abstract.py
Lib/stdwin/Abstract.py

index d6015271d9fe3748c8bb4626697bb818d4bdd012..9d9013be988967434a447efc21144933cdb2c78b 100644 (file)
@@ -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():
        #
index d6015271d9fe3748c8bb4626697bb818d4bdd012..9d9013be988967434a447efc21144933cdb2c78b 100755 (executable)
@@ -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():
        #