我们从Python开源项目中,提取了以下8个代码示例,用于说明如何使用distutils.spawn._nt_quote_args()。
def test_nt_quote_args(self): for (args, wanted) in ((['with space', 'nospace'], ['"with space"', 'nospace']), (['nochange', 'nospace'], ['nochange', 'nospace'])): res = _nt_quote_args(args) self.assertEqual(res, wanted)