我们从Python开源项目中,提取了以下8个代码示例,用于说明如何使用getopt.short_has_arg()。
def test_short_has_arg(self): self.assertTrue(getopt.short_has_arg('a', 'a:')) self.assertFalse(getopt.short_has_arg('a', 'a')) self.assertError(getopt.short_has_arg, 'a', 'b')