def create_bottle_multi_dict(): d = BotMultiDict() d["foos"] = "a" d["foos"] = "b" return d
def create_bottle_multi_dict(): d = BotMultiDict() d['foos'] = 'a' d['foos'] = 'b' return d