Home
last modified time | relevance | path

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

/third_party/python/Lib/distutils/command/
Dupload.py16 from distutils.core import PyPIRCCommand
30 class upload(PyPIRCCommand):
34 user_options = PyPIRCCommand.user_options + [
40 boolean_options = PyPIRCCommand.boolean_options + ['sign']
43 PyPIRCCommand.initialize_options(self)
51 PyPIRCCommand.finalize_options(self)
Dregister.py13 from distutils.core import PyPIRCCommand
17 class register(PyPIRCCommand):
20 user_options = PyPIRCCommand.user_options + [
26 boolean_options = PyPIRCCommand.boolean_options + [
32 PyPIRCCommand.initialize_options(self)
37 PyPIRCCommand.finalize_options(self)
/third_party/python/Lib/distutils/tests/
Dtest_config.py5 from distutils.core import PyPIRCCommand
67 class command(PyPIRCCommand):
69 PyPIRCCommand.__init__(self, dist)
/third_party/python/Lib/distutils/
Dcore.py18 from distutils.config import PyPIRCCommand
Dconfig.py21 class PyPIRCCommand(Command): class