Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

async.py 335B

123456789101112131415
  1. """
  2. ldap.asyncsearch - handle async LDAP search operations
  3. See https://www.python-ldap.org/ for details.
  4. """
  5. import warnings
  6. from ldap.asyncsearch import *
  7. from ldap.asyncsearch import __version__
  8. warnings.warn(
  9. "'ldap.async module' is deprecated, import 'ldap.asyncsearch' instead.",
  10. DeprecationWarning,
  11. stacklevel=2
  12. )