cf.dump

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

Print the full description of an object using its callable 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. The same as the id parameter for the object’s dump method.
  • omit (sequence) – Optional. The same as the omit parameter for the object’s dump method.
Returns:

None

Previous topic

cf.write

Next topic

cf.equals

This Page