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 89f66f8 commit 6f2a45dCopy full SHA for 6f2a45d
Lib/ldap/cidict.py
@@ -15,6 +15,7 @@ class cidict(MutableMapping):
15
"""
16
Case-insensitive but case-respecting dictionary.
17
18
+ __slots__ = ('_keys', '_data')
19
20
def __init__(self, default=None):
21
self._keys = {}
Lib/ldapurl.py
@@ -137,6 +137,7 @@ class LDAPUrlExtensions(MutableMapping):
137
Models a collection of LDAP URL extensions as
138
a mapping type
139
140
+ __slots__ = ('_data', )
141
142
143
self._data = {}
0 commit comments