/external/python/cpython2/Lib/distutils/ |
D | dist.py | 123 negative_opt = {'quiet': 'verbose'} variable in Distribution 410 alias = self.negative_opt.get(opt) 457 parser.set_negative_aliases(self.negative_opt) 544 negative_opt = self.negative_opt 546 negative_opt = negative_opt.copy() 547 negative_opt.update(cmd_class.negative_opt) 563 parser.set_negative_aliases(negative_opt) 884 neg_opt = command_obj.negative_opt
|
D | fancy_getopt.py | 402 def fancy_getopt (options, negative_opt, object, args): argument 404 parser.set_negative_aliases(negative_opt)
|
/external/python/cpython3/Lib/distutils/ |
D | dist.py | 132 negative_opt = {'quiet': 'verbose'} variable in Distribution 426 alias = self.negative_opt.get(opt) 473 parser.set_negative_aliases(self.negative_opt) 559 negative_opt = self.negative_opt 561 negative_opt = negative_opt.copy() 562 negative_opt.update(cmd_class.negative_opt) 577 parser.set_negative_aliases(negative_opt) 897 neg_opt = command_obj.negative_opt
|
D | fancy_getopt.py | 367 def fancy_getopt(options, negative_opt, object, args): argument 369 parser.set_negative_aliases(negative_opt)
|
/external/python/cpython3/Lib/distutils/command/ |
D | install.py | 143 negative_opt = {'no-compile' : 'compile'} variable in install 383 if opt_name in self.negative_opt: 384 opt_name = self.negative_opt[opt_name]
|
D | install_lib.py | 49 negative_opt = {'no-compile' : 'compile'} variable in install_lib
|
D | bdist_rpm.py | 131 negative_opt = {'no-keep-temp': 'keep-temp', variable in bdist_rpm
|
D | sdist.py | 94 negative_opt = {'no-defaults': 'use-defaults', variable in sdist
|
D | build_py.py | 30 negative_opt = {'no-compile' : 'compile'} variable in build_py
|
/external/python/cpython2/Lib/distutils/command/ |
D | install.py | 160 negative_opt = {'no-compile' : 'compile'} variable in install 390 if opt_name in self.negative_opt: 391 opt_name = string.translate(self.negative_opt[opt_name],
|
D | install_lib.py | 53 negative_opt = {'no-compile' : 'compile'} variable in install_lib
|
D | sdist.py | 94 negative_opt = {'no-defaults': 'use-defaults', variable in sdist
|
D | build_py.py | 31 negative_opt = {'no-compile' : 'compile'} variable in build_py
|
D | bdist_rpm.py | 136 negative_opt = {'no-keep-temp': 'keep-temp', variable in bdist_rpm
|
/external/python/setuptools/setuptools/ |
D | dist.py | 577 no = self.negative_opt.copy() 598 self.negative_opt = self.feature_negopt = no 793 self.negative_opt = self.__class__.negative_opt 839 neg_opt = self.negative_opt.copy()
|
D | py36compat.py | 60 alias = self.negative_opt.get(opt)
|
/external/python/setuptools/setuptools/command/ |
D | sdist.py | 38 negative_opt = {} variable in sdist
|
D | egg_info.py | 131 negative_opt = { variable in egg_info
|
D | easy_install.py | 166 negative_opt = {'always-unzip': 'zip-ok'} variable in easy_install
|
/external/python/cpython2/Doc/distutils/ |
D | apiref.rst | 1318 .. function:: fancy_getopt(options, negative_opt, object, args) 1322 :class:`FancyGetopt`. *negative_opt* should be a dictionary mapping option names
|
/external/python/cpython3/Doc/distutils/ |
D | apiref.rst | 1327 .. function:: fancy_getopt(options, negative_opt, object, args) 1331 :class:`FancyGetopt`. *negative_opt* should be a dictionary mapping option names
|