mirror of
https://github.com/python/cpython.git
synced 2025-10-21 22:22:48 +00:00
Comment changes.
This commit is contained in:
parent
b156d7259b
commit
debbe041e6
2 changed files with 18 additions and 2 deletions
|
@ -1,6 +1,14 @@
|
||||||
# Abstract classes for parents and children.
|
# Abstract classes for parents and children.
|
||||||
|
#
|
||||||
# Do not use as base class -- this is for documentation only.
|
# 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():
|
class AbstractParent():
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
# Abstract classes for parents and children.
|
# Abstract classes for parents and children.
|
||||||
|
#
|
||||||
# Do not use as base class -- this is for documentation only.
|
# 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():
|
class AbstractParent():
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue