Return a comparison object for the second of the minute of a date-time object.
In this context, a date-time object is any object which has a second attribute.
If value is a cf.Comparison object then cf.second(value) is equivalent to value.addattr('second'). Otherwise cf.second(value) is equivalent to cf.eq(value, attr='second').
Parameters : |
|
---|---|
Returns : |
|
Examples
>>> d = cf.dt(2002, 6, 16, 18, 30, 0)
>>> d == cf.second(0)
True
>>> d == cf.second(cf.le(30))
True
>>> d == cf.second(30)
False
>>> d == cf.second(cf.wi(0, 30))
True