| Home | Trees | Index | Help |  | 
|---|
| Package kiwi :: Module python | 
 | 
| Classes | |
|---|---|
| ClassInittableMetaType | |
| ClassInittableObject | I am an object which will call a classmethod called __class_init__ when I am created. | 
| enum | enum is an enumered type implementation in python. | 
| Settable | A mixin class for syntactic sugar. | 
| Function Summary | |
|---|---|
| Return true if all items in seq are True | |
| Return true if any item in seq is True | |
| Ensures that x is between the limits set by low and high. | |
| Prints a deprecation warning | |
| Disables all deprecation warnings during the function call to func | |
| Get a fully named package, module, module-global object, or attribute. | |
| Return fully qualified module and class name | |
| Takes a slice object and returns a range iterator | |
| Function Details | 
|---|
| all(seq)
 | 
| any(seq)
 | 
| clamp(x, low, high)Ensures that x is between the limits set by low and high. For example, * clamp(5, 10, 15) is 10. * clamp(15, 5, 10) is 10. * clamp(20, 15, 25) is 20.
 | 
| deprecationwarn(msg, stacklevel=2)Prints a deprecation warning | 
| disabledeprecationcall(func, *args, **kwargs)Disables all deprecation warnings during the function call to func | 
| namedAny(name)Get a fully named package, module, module-global object, or attribute.
 | 
| qual(klass)
 | 
| slicerange(slice, limit)Takes a slice object and returns a range iterator
 | 
| Home | Trees | Index | Help |  | 
|---|
| Generated by Epydoc 2.1 on Fri Mar 23 15:56:54 2007 | http://epydoc.sf.net |