The leap_month CF property of each field.
fl.leap_month is equivalent to cf.List(f.leap_month for f in fl).
fl.leap_month = value is equivalent to for f in fl: f.leap_month = value.
del fl.leap_month is equivalent to for f in fl: del f.leap_month.
See cf.Field.leap_month for details.