Home
last modified time | relevance | path

Searched refs:optdict (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
Dcalendar.py682 optdict = dict(encoding=encoding, css=options.css)
684 print cal.formatyearpage(datetime.date.today().year, **optdict)
686 print cal.formatyearpage(int(args[1]), **optdict)
695 optdict = dict(w=options.width, l=options.lines)
697 optdict["c"] = options.spacing
698 optdict["m"] = options.months
700 result = cal.formatyear(datetime.date.today().year, **optdict)
702 result = cal.formatyear(int(args[1]), **optdict)
704 result = cal.formatmonth(int(args[1]), int(args[2]), **optdict)
/external/python/cpython2/Lib/lib-tk/
Dttk.py59 def _format_optdict(optdict, script=False, ignore=None): argument
67 for opt, value in optdict.iteritems():
/external/python/cpython2/Lib/test/
Dtest_optparse.py64 optdict = vars(options)
66 self.assertEqual(optdict, expected_opts,