def occurences_from(from_, dates, is_ints=False):
_from = from_
if is_ints:
_from = from_ and dt2int(from_) or None
if _from is not None:
results = dropwhile(lambda x: x < _from, dates)
return results
return dates
#@region.cache_on_arguments()
评论列表
文章目录