bundles / astropy 7.0.1 / astropy / utils / diff / report_diff_values
function
astropy.utils.diff:report_diff_values
source: /astropy/utils/diff.py :54
Signature
def report_diff_values ( a , b , fileobj = <_io.TextIOWrapper name='<stdout>' mode='w' encoding='utf-8'> , indent_width = 0 , rtol = 0.0 , atol = 0.0 ) Summary
Write a diff report between two values to the specified file-like object.
Parameters
a, bValues to compare. Anything that can be turned into strings and compared using
difflibshould work.fileobj: objectFile-like object to write to. The default is
sys.stdout, which writes to terminal.indent_width: intCharacter column(s) to indent.
rtol, atol: floatRelative and absolute tolerances as accepted by numpy.allclose.
Returns
identical: boolTrueif no diff, elseFalse.
Aliases
-
astropy.io.fits.diff.report_diff_values