Python setuptools.command.easy_install 模块,is_sh() 实例源码

我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用setuptools.command.easy_install.is_sh()

项目:dymo-m10-python    作者:pbrf    | 项目源码 | 文件源码
def test_get_script_header(self):
        if not sys.platform.startswith('java') or not is_sh(sys.executable):
            # This test is for non-Jython platforms
            self.assertEqual(get_script_header('#!/usr/local/bin/python'),
                             '#!%s\n' % os.path.normpath(sys.executable))
            self.assertEqual(get_script_header('#!/usr/bin/python -x'),
                             '#!%s  -x\n' % os.path.normpath(sys.executable))
            self.assertEqual(get_script_header('#!/usr/bin/python',
                                               executable=self.non_ascii_exe),
                             '#!%s -x\n' % self.non_ascii_exe)