cf.dump

cf.dump(x, id=None, nc=False, omit=())

Print the full description of an object using its dump() method.

This function is exactly equivalent to:

>>> print x.dump(...)

or, if the object has no dump() method:

>>> print x

The parameters are only used if the object’s dump() method is being utilized.

Parameters:
  • x (object) – Optional. The object to print.
  • id (str) – Optional. Set the common prefix of object’s component names, as for the object’s dump() method.
  • nc (bool) – Optional. If True then include attributes whose names begin ‘nc’.
  • omit (sequence) – Optional. Omit the given attributes from a objects’s description.
Returns:

None

Previous topic

cf functions

Next topic

cf.eq

This Page