Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dbdist_rpm.py223 self.ensure_string('group', "Development/Libraries")
224 self.ensure_string('vendor',
227 self.ensure_string('packager')
234 self.ensure_string('release', "1")
235 self.ensure_string('serial') # should it be an int?
237 self.ensure_string('distribution_name')
239 self.ensure_string('changelog')
265 self.ensure_string('force_arch')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_cmd.py71 cmd.ensure_string('option1')
74 cmd.ensure_string('option2', 'xxx')
78 self.assertRaises(DistutilsOptionError, cmd.ensure_string, 'option3')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Dcmd.py219 def ensure_string(self, option, default=None): member in Command