Every line of 'python dict_values' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
24 def values(dict): 25 return dict.values()
166 def values(self): 167 return map(self.get, self._keys)
54 def values(self, space): 55 return space.newlist(self._items_w.values())
175 def values(self): 176 return [self[key] for key in self._keys]
40 def dictionary_values(dictionary): 41 return dictionary.values()