/external/python/cpython3/Lib/test/ |
D | test_optparse.py | 386 self.parser.remove_option("-n") 390 self.parser.remove_option("--verbose") 394 self.assertRaises(self.parser.remove_option, ('foo',), None, 502 self.parser.remove_option("-y") 554 parser.remove_option("-h") 555 parser.remove_option("--version") 1134 parser.remove_option("-h")
|
D | test_configparser.py | 249 self.assertTrue(cf.remove_option('Foo Bar', 'foo'), 253 self.assertFalse(cf.remove_option('Foo Bar', 'foo'), 257 self.assertFalse(cf.remove_option('Foo Bar', 'this_value')) 258 self.assertTrue(cf.remove_option(self.default_section, 'this_value')) 260 self.assertFalse(cf.remove_option(self.default_section, 'this_value')) 263 cf.remove_option('No Such Section', 'foo') 456 cf.remove_option("a", "B") 1927 config.remove_option('Section1', 'an_int')
|
/external/python/cpython2/Lib/test/ |
D | test_optparse.py | 375 self.parser.remove_option("-n") 379 self.parser.remove_option("--verbose") 383 self.assertRaises(self.parser.remove_option, ('foo',), None, 497 self.parser.remove_option("-y") 549 parser.remove_option("-h") 550 parser.remove_option("--version") 1136 parser.remove_option("-h")
|
D | test_cfgparser.py | 109 self.assertTrue(cf.remove_option('Foo Bar', 'foo'), 113 self.assertFalse(cf.remove_option('Foo Bar', 'foo'), 118 cf.remove_option, 'No Such Section', 'foo') 143 cf.remove_option("a", "B")
|
/external/python/setuptools/setuptools/command/ |
D | setopt.py | 58 opts.remove_option(section, option)
|
/external/autotest/client/common_lib/cros/ |
D | avahi_utils.py | 50 conf.remove_option(section, option)
|
/external/autotest/client/bin/ |
D | test_config.py | 98 self.parser.remove_option(section, option)
|
/external/autotest/cli/ |
D | acl.py | 147 self.parser.remove_option('--alist')
|
/external/python/cpython2/Doc/library/ |
D | configparser.rst | 356 .. method:: RawConfigParser.remove_option(section, option) 510 config.remove_option('Section1', 'bar') 511 config.remove_option('Section1', 'baz') 524 config.remove_option(section1, option)
|
D | optparse.rst | 1404 .. method:: OptionParser.remove_option(opt_str)
|
/external/python/cpython3/Lib/ |
D | configparser.py | 933 def remove_option(self, section, option): member in RawConfigParser 1260 self._parser.remove_option(self._name, key)):
|
D | optparse.py | 1039 def remove_option(self, opt_str): member in OptionContainer
|
/external/python/cpython2/Lib/idlelib/ |
D | configHandler.py | 100 return self.remove_option(section, option)
|
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 416 def remove_option(self, section, option): member in RawConfigParser
|
D | optparse.py | 1052 def remove_option(self, opt_str): member in OptionContainer
|
/external/python/cpython3/Lib/idlelib/ |
D | config.py | 108 return self.remove_option(section, option)
|
/external/autotest/frontend/afe/ |
D | moblab_rpc_interface.py | 164 existing_shadow.remove_option(section, key)
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 854 config.remove_option('Section1', 'bar') 855 config.remove_option('Section1', 'baz') 1114 .. method:: remove_option(section, option)
|
D | optparse.rst | 1402 .. method:: OptionParser.remove_option(opt_str)
|
/external/python/cpython2/Misc/ |
D | HISTORY | 9094 remove_section, remove_option, set, and write. They allow the module
|
/external/python/cpython3/Misc/ |
D | HISTORY | 26473 remove_section, remove_option, set, and write. They allow the module
|