Lines Matching refs:key
51 def update_mapping(section, key, mapping):
53 section/key.
56 if (section, key) in mapping:
57 print "Deprecated value found: [%s] %s" % (section, key)
58 section, key = mapping[(section, key)]
59 if section is None and key is None:
62 print "Updating to: [%s] %s" % (section, key)
63 return section, key
110 section/key.