File tree Expand file tree Collapse file tree 3 files changed +0
-18
lines changed Expand file tree Collapse file tree 3 files changed +0
-18
lines changed Original file line number Diff line number Diff line change 2
2
dn.py - misc stuff for handling distinguished names (see RFC 4514)
3
3
4
4
See https://www.python-ldap.org/ for details.
5
-
6
- Compability:
7
- - Tested with Python 2.0+
8
5
"""
9
6
10
7
from ldap .pkginfo import __version__
Original file line number Diff line number Diff line change 2
2
functions.py - wraps functions of module _ldap
3
3
4
4
See https://www.python-ldap.org/ for details.
5
-
6
- Compability:
7
- - Tested with Python 2.0+ but should work with Python 1.5.x
8
- - functions should behave exactly the same like in _ldap
9
-
10
- Usage:
11
- Directly imported by ldap/__init__.py. The symbols of _ldap are
12
- overridden.
13
-
14
- Thread-lock:
15
- Basically calls into the LDAP lib are serialized by the module-wide
16
- lock _ldapmodule_lock.
17
5
"""
18
6
19
7
from ldap import __version__
Original file line number Diff line number Diff line change 10
10
LDAPObject's sasl_bind_s() method
11
11
Implementing support for new sasl mechanism is very easy --- see
12
12
the examples of digest_md5 and gssapi.
13
-
14
- Compability:
15
- - Tested with Python 2.0+ but should work with Python 1.5.x
16
13
"""
17
14
18
15
from ldap import __version__
You can’t perform that action at this time.
0 commit comments