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
Multiple functions had a reference leak while raising a TypeError with
Py_BuildValue(). The CAPI function Py_BuildValue() returns a new
reference. PyErr_SetObject() does NOT consume the reference. Instead it
increments the reference count of the object again.
A new function LDAPerror_TypeError() handles raising TypeError with
custom message and object.
https://github.com/python-ldap/python-ldap/pull/31/filesCloses: #24
Signed-off-by: Christian Heimes <cheimes@redhat.com>
0 commit comments