cf.dtle

cf.dtle(*args, **kwargs)[source]

Return a comparison object for a datetime variable being not later than a date and time.

cf.dtle(*args, **kwargs) is equivalent to cf.le(cf.dt(*args, **kwargs)).

Parameters :
args, kwargs :

Positional and keyword arguments for defining a datetime. See cf.dt for details.

Returns :
out : cf.Comparison

The comparison object.

Examples

>>> d = cf.dt(2002, 6, 16)
>>> d == cf.dtle(1990, 1, 1)
True
>>> d == cf.dtle(2002, 6, 16)
True
>>> d == cf.dtle('2100-1-1')
False
>>> d == cf.dtle('2001-1-1') & cf.dtle(2010, 12, 31)
True

The last example is equivalent to:

>>> d == cf.wi(cf.dt(2001, 1, 1), cf.dt('2010-12-31'))
True

Previous topic

cf.dtgt

Next topic

cf.dtlt

This Page