Home
last modified time | relevance | path

Searched refs:PyPIRCCommand (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dupload.py14 from distutils.core import PyPIRCCommand
18 class upload(PyPIRCCommand):
22 user_options = PyPIRCCommand.user_options + [
28 boolean_options = PyPIRCCommand.boolean_options + ['sign']
31 PyPIRCCommand.initialize_options(self)
39 PyPIRCCommand.finalize_options(self)
Dregister.py16 from distutils.core import PyPIRCCommand
19 class register(PyPIRCCommand):
22 user_options = PyPIRCCommand.user_options + [
28 boolean_options = PyPIRCCommand.boolean_options + [
34 PyPIRCCommand.initialize_options(self)
39 PyPIRCCommand.finalize_options(self)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_config.py8 from distutils.core import PyPIRCCommand
64 class command(PyPIRCCommand):
66 PyPIRCCommand.__init__(self, dist)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dconfig.py21 class PyPIRCCommand(Command): class
Dcore.py22 from distutils.config import PyPIRCCommand