Lines Matching full:items
72 >>> sorted(config.items("settings"))
78 >>> sorted(config.items("settings"))
99 for setting_name, setting_value in project_defaults.items():
132 def items(self, section, *args, **kwargs): member in _ProjectConfigParser
144 # Get items from the project section
146 project_items = ConfigParser.SafeConfigParser.items(
153 # Get top-level items
155 top_items = ConfigParser.SafeConfigParser.items(
253 for name, val in config.items('settings'):
303 """Get the items from a section of the config.
313 return config.items(section)