You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
would it be feasible to include Python3 compatibility (through 2to3 at least).
Installing via pip breaks in Py3:
print name + ': ' + cfg.get('_ldap', name)
^
SyntaxError: invalid syntax
The text was updated successfully, but these errors were encountered:
Python 3 compatibility won't be possible until the underlying python-ldap library becomes Python 3 compatible. That said, there does appear to be another, pure-Python ldap library that is Python 3 compatible: https://pypi.python.org/pypi/python3-ldap. Haven't used that library yet, but--being pure Python--there's a chance that its API is already good enough to not need the help of something like python-simpleldap.
Python 3 compatibility won't be possible until the underlying
python-ldap library becomes Python 3 compatible. That said, there does
appear to be another, pure-Python ldap library that is Python 3
compatible: https://pypi.python.org/pypi/python3-ldap. Haven't used
that library yet, but--being pure Python--there's a chance that its API
is already good enough to not need the help of something like
python-simpleldap.
Hi,
would it be feasible to include Python3 compatibility (through 2to3 at least).
Installing via pip breaks in Py3:
print name + ': ' + cfg.get('_ldap', name)
SyntaxError: invalid syntax
The text was updated successfully, but these errors were encountered: