We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8fd2fa commit cd7fe2bCopy full SHA for cd7fe2b
aiohttp/_multidict.pyx
@@ -95,21 +95,12 @@ cdef class _Base:
95
return len(self._items)
96
97
def keys(self):
98
- return self._keys_view()
99
-
100
- cdef _KeysView _keys_view(self):
101
return _KeysView.__new__(_KeysView, self._items)
102
103
def items(self):
104
- return self._items_view()
105
106
- cdef _ItemsView _items_view(self):
107
return _ItemsView.__new__(_ItemsView, self._items)
108
109
def values(self):
110
- return self._values_view()
111
112
- cdef _ValuesView _values_view(self):
113
return _ValuesView.__new__(_ValuesView, self._items)
114
115
def __repr__(self):
0 commit comments