-
Notifications
You must be signed in to change notification settings - Fork 126
More bytesmode #152
New issue
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
More bytesmode #152
Conversation
It's a hack, but looks reasonable. I was considering doing something similar :) I'll do a review next week. |
Codecov Report
@@ Coverage Diff @@
## master #152 +/- ##
==========================================
+ Coverage 69.34% 69.56% +0.21%
==========================================
Files 49 49
Lines 4707 4731 +24
Branches 808 817 +9
==========================================
+ Hits 3264 3291 +27
+ Misses 1088 1085 -3
Partials 355 355
Continue to review full report at Codecov.
|
Schema attribute names must be text in Python 2, too. Otherwise read_subschemasubentry_s() fails with bytes error. Signed-off-by: Christian Heimes <cheimes@redhat.com>
Tests marked with expected failure are currently affected by bug python-ldap#147. See: python-ldap#147 Signed-off-by: Christian Heimes <cheimes@redhat.com>
Several default arguments are not compatible with bytes mode. Default to bytes in bytes mode. See: python-ldap#147 Signed-off-by: Christian Heimes <cheimes@redhat.com>
Signed-off-by: Christian Heimes <cheimes@redhat.com>
b5caf78
to
f8f8c9c
Compare
|
||
``filterstr=None`` is equivalent to ``filterstr='(objectClass=*)'``. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good; the only nitpick I found is to say equivalent
instead of equal
here.
See #147