Lines Matching refs:months
40 # Constants for months referenced later
94 # Full and abbreviated names of months (1-based arrays!!!)
259 value is a list of month rows. Each month row contains up to width months.
263 months = [
267 return [months[i:i+width] for i in range(0, len(months), width) ]
276 months = [
280 return [months[i:i+width] for i in range(0, len(months), width) ]
288 months = [
292 return [months[i:i+width] for i in range(0, len(months), width) ]
384 # months in this row
385 months = range(m*i+1, min(m*(i+1)+1, 13))
388 for k in months)
391 headers = (header for k in months)
513 # months in this row
514 months = range(i, min(i+width, 13))
516 for m in months:
681 help="spacing between months (default 6)"
684 "-m", "--months",
686 help="months per row (default 3)"
753 optdict["m"] = options.months