Merge pull request #33 from Firstyear/2016-02-18-python-ldap-id-clean

Add pyldap_version constant to allow ID of ldap implementation.
This commit is contained in:
Raphaël Barrois 2016-04-06 22:46:40 +02:00
commit d572d1c5ed
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@ if __debug__:
import _ldap
from _ldap import *
PYLDAP_VERSION = __version__
OPT_NAMES_DICT = {}
for k,v in vars(_ldap).items():
if k.startswith('OPT_'):