Searched refs:optdict (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/ |
D | calendar.py | 725 optdict = dict(encoding=encoding, css=options.css) 728 write(cal.formatyearpage(datetime.date.today().year, **optdict)) 730 write(cal.formatyearpage(options.year, **optdict)) 739 optdict = dict(w=options.width, l=options.lines) 741 optdict["c"] = options.spacing 742 optdict["m"] = options.months 744 result = cal.formatyear(datetime.date.today().year, **optdict) 746 result = cal.formatyear(options.year, **optdict) 748 result = cal.formatmonth(options.year, options.month, **optdict)
|
/third_party/python/Lib/tkinter/ |
D | ttk.py | 59 def _format_optdict(optdict, script=False, ignore=None): argument 67 for opt, value in optdict.items():
|
/third_party/python/Lib/test/ |
D | test_optparse.py | 63 optdict = vars(options) 65 self.assertEqual(optdict, expected_opts,
|