From: Florian Forster Date: Thu, 22 Apr 2010 08:45:58 +0000 (+0200) Subject: Merge remote branch 'trenkel/st/python' X-Git-Tag: collectd-4.10.0~16 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=5f3702fcc67d68d428708e9cf5e5897ad2578925 Merge remote branch 'trenkel/st/python' --- 5f3702fcc67d68d428708e9cf5e5897ad2578925 diff --cc src/collectd-python.pod index 335f6a91,dd0f1f68..36d2be33 --- a/src/collectd-python.pod +++ b/src/collectd-python.pod @@@ -231,9 -240,31 +240,31 @@@ collectd you're done The following complex types are used to pass values between the Python plugin and collectd: + =head2 Signed + + The Signed class is just a long. It has all its methods and behaves exactly + like any other long object. It is used to indicate if an integer was or should + be stored as a signed or unsigned integer object. + + class Signed(long) + + This is a long by another name. Use it in meta data dicts + to choose the way it is stored in the meta data. + + =head2 Unsigned + + The Unsigned class is just a long. It has all its methods and behaves exactly + like any other long object. It is used to indicate if an integer was or should + be stored as a signed or unsigned integer object. + + class Unsigned(long) + + This is a long by another name. Use it in meta data dicts + to choose the way it is stored in the meta data. + =head2 Config -The Config class is an object which keeps the informations provided in the +The Config class is an object which keeps the information provided in the configuration file. The sequence of children keeps one entry for each configuration option. Each such entry is another Config instance, which may nest further if nested blocks are used.