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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you found a bug in python-ldap, or would request a new feature, this is the place to let us know.
Please describe the issue and your environment here.
Issue description:
when I create SSSRequestControl(ordering_rules=['-uidNumber'] its fail because "basestring" in init method not exists in python3.
tips: set basestring = str
Steps to reproduce:
Operating system:
Python version: 3.7
python-ldap version: 3.1.0
The text was updated successfully, but these errors were encountered:
Python 3 has no basestring, use str instead
2511d20
Fixes: python-ldap#255
de95909
3afdd87
Lib/ldap/controls/sss: use str instead of basestring on Python 3
2059c13
* Python 3 has no basestring, use str instead * Add a very minimal test to create a SSSRequestControl Fixes: #255
No branches or pull requests
If you found a bug in python-ldap, or would request a new feature,
this is the place to let us know.
Please describe the issue and your environment here.
Issue description:
when I create SSSRequestControl(ordering_rules=['-uidNumber'] its fail because "basestring" in init method not exists in python3.
tips: set basestring = str
Steps to reproduce:
Operating system:
Python version: 3.7
python-ldap version: 3.1.0
The text was updated successfully, but these errors were encountered: