Docstring tweaks
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26034 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -51,18 +51,19 @@ classes. It can not be used by itself (it is an abstract base
|
|||||||
class) and you will always use one of its derivations: wx.Config
|
class) and you will always use one of its derivations: wx.Config
|
||||||
or wx.FileConfig.
|
or wx.FileConfig.
|
||||||
|
|
||||||
wx.ConfigBase organizes the items in a tree-like structure
|
wx.ConfigBase organizes the items in a tree-like structure,
|
||||||
(modeled after the Unix/Dos filesystem). There are groups
|
modeled after the Unix/Dos filesystem. There are groups that act
|
||||||
(directories) and keys (files). There is always one current
|
like directories and entries, key/value pairs that act like
|
||||||
group given by the current path. As in the file system case, to
|
files. There is always one current group given by the current
|
||||||
specify a key in the config class you must use a path to it.
|
path. As in the file system case, to specify a key in the config
|
||||||
Config classes also support the notion of the current group,
|
class you must use a path to it. Config classes also support the
|
||||||
which makes it possible to use relative paths.
|
notion of the current group, which makes it possible to use
|
||||||
|
relative paths.
|
||||||
|
|
||||||
Keys are pairs \"key_name = value\" where value may be of string, integer
|
Keys are pairs \"key_name = value\" where value may be of string,
|
||||||
floating point or boolean, you can not store binary data without first
|
integer floating point or boolean, you can not store binary data
|
||||||
encoding it as a string. For performance reasons items should be kept small,
|
without first encoding it as a string. For performance reasons
|
||||||
no more than a couple kilobytes.
|
items should be kept small, no more than a couple kilobytes.
|
||||||
");
|
");
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user