コード例 #1
0
ファイル: test_suite.py プロジェクト: tonyseek/pythonz
def test_05_uninstall():
    from pythonz.commands.uninstall import UninstallCommand
    for py_type, py_versions in TESTPY_VERSION:
        c = UninstallCommand()
        for py_version in py_versions:
            c.run_command(Options({'type': py_type}), [py_version])
コード例 #2
0
def uninstall_cmd(argv):
    '''Use Pythonz to uninstall the specified Python version'''
    UninstallCommand().run(argv)
コード例 #3
0
ファイル: test_suite.py プロジェクト: EvertonSilva/pythonz
def test_05_uninstall():
    from pythonz.commands.uninstall import UninstallCommand
    for py_type, py_versions in TESTPY_VERSION:
        c = UninstallCommand()
        for py_version in py_versions:
            c.run_command(Options({'type': py_type}), [py_version])