Home
last modified time | relevance | path

Searched refs:ensure_string (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/distutils/command/
Dbdist_rpm.py212 self.ensure_string('group', "Development/Libraries")
213 self.ensure_string('vendor',
216 self.ensure_string('packager')
223 self.ensure_string('release', "1")
224 self.ensure_string('serial') # should it be an int?
226 self.ensure_string('distribution_name')
228 self.ensure_string('changelog')
254 self.ensure_string('force_arch')
/third_party/python/Lib/distutils/tests/
Dtest_cmd.py83 cmd.ensure_string('option1')
86 cmd.ensure_string('option2', 'xxx')
90 self.assertRaises(DistutilsOptionError, cmd.ensure_string, 'option3')
/third_party/python/Lib/distutils/
Dcmd.py217 def ensure_string(self, option, default=None): member in Command