Home
last modified time | relevance | path

Searched refs:ensure_string_list (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/distutils/tests/
Dtest_cmd.py28 cmd.ensure_string_list('yes_string_list')
29 cmd.ensure_string_list('yes_string_list2')
32 cmd.ensure_string_list, 'not_string_list')
35 cmd.ensure_string_list, 'not_string_list2')
38 cmd.ensure_string_list('option1')
42 cmd.ensure_string_list('option2')
45 self.assertRaises(DistutilsOptionError, cmd.ensure_string_list,
/third_party/python/Lib/distutils/command/
Dbdist_rpm.py217 self.ensure_string_list('doc_files')
248 self.ensure_string_list('provides')
249 self.ensure_string_list('requires')
250 self.ensure_string_list('conflicts')
251 self.ensure_string_list('build_requires')
252 self.ensure_string_list('obsoletes')
Dbdist.py104 self.ensure_string_list('formats')
Dbuild_ext.py169 self.ensure_string_list('libraries')
170 self.ensure_string_list('link_objects')
Dsdist.py130 self.ensure_string_list('formats')
/third_party/python/Lib/distutils/
Dcmd.py223 def ensure_string_list(self, option): member in Command