Lines Matching +full:python +full:- +full:format
5 __author__ = "Steve Dower <steve.dower@python.org>"
20 "pip-user": {"help": "pip.ini file for default --user"},
29 "underpth": {"help": "a python._pth file", "not-in-all": True},
32 "props": {"help": "a python.props file"},
33 "nuspec": {"help": "a python.nuspec file"},
35 "html-doc": {"help": "the HTML documentation"},
45 "pip-user",
83 "html-doc",
88 "options": ["stable", "zip-lib", "flat-dlls", "underpth", "precompile"],
96 help = "When specified, includes {}".format(info["help"])
97 if info.get("not-in-all"):
98 help = "{}. Not affected by --include-all".format(help)
100 yield "--include-{}".format(opt), help
103 help = "When specified, includes default options for {}".format(info["help"])
104 yield "--preset-{}".format(opt), help
108 return getattr(ns, key.replace("-", "_"), default)
112 k1 = key.replace("-", "_")
113 k2 = "include_{}".format(k1)
119 raise AttributeError("no argument named '{}'".format(k1))
125 if ns_get(ns, "preset-{}".format(preset)):
131 if OPTIONS[opt].get("not-in-all"):