Home
last modified time | relevance | path

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

/external/python/cpython2/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.py15 from distutils.core import PyPIRCCommand
18 class register(PyPIRCCommand):
21 user_options = PyPIRCCommand.user_options + [
27 boolean_options = PyPIRCCommand.boolean_options + [
33 PyPIRCCommand.initialize_options(self)
38 PyPIRCCommand.finalize_options(self)
/external/python/cpython2/Lib/distutils/tests/
Dtest_config.py8 from distutils.core import PyPIRCCommand
64 class command(PyPIRCCommand):
66 PyPIRCCommand.__init__(self, dist)
/external/python/cpython2/Lib/distutils/
Dcore.py21 from distutils.config import PyPIRCCommand
Dconfig.py21 class PyPIRCCommand(Command): class