Home
last modified time | relevance | path

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

/external/python/cpython2/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,
/external/python/cpython2/Lib/distutils/command/
Dbdist_rpm.py229 self.ensure_string_list('doc_files')
260 self.ensure_string_list('provides')
261 self.ensure_string_list('requires')
262 self.ensure_string_list('conflicts')
263 self.ensure_string_list('build_requires')
264 self.ensure_string_list('obsoletes')
Dbdist.py109 self.ensure_string_list('formats')
Dbuild_ext.py163 self.ensure_string_list('libraries')
164 self.ensure_string_list('link_objects')
Dsdist.py131 self.ensure_string_list('formats')
/external/python/cpython2/Lib/distutils/
Dcmd.py225 def ensure_string_list(self, option): member in Command