Skip to content

Commit

Permalink
added missing class name prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
stroeder committed Aug 16, 2017
1 parent 1ca1ab8 commit 5545a9c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Doc/ldap.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. % $Id: ldap.rst,v 1.38 2017/08/16 12:03:33 stroeder Exp $
.. % $Id: ldap.rst,v 1.39 2017/08/16 12:17:18 stroeder Exp $
********************************************
:py:mod:`ldap` LDAP library interface module
Expand Down Expand Up @@ -740,9 +740,9 @@ and wait for and return with the server's result, or with
*serverctrls* and *clientctrls* like described above.


.. py:method:: extop(extreq[,serverctrls=None[,clientctrls=None]]]) -> int
.. py:method:: LDAPObject.extop(extreq[,serverctrls=None[,clientctrls=None]]]) -> int
.. py:method:: extop_s(extreq[,serverctrls=None[,clientctrls=None[,extop_resp_class=None]]]]) -> (respoid,respvalue)
.. py:method:: LDAPObject.extop_s(extreq[,serverctrls=None[,clientctrls=None[,extop_resp_class=None]]]]) -> (respoid,respvalue)
Performs an LDAP extended operation. The asynchronous
form returns the message id of the initiated request, and the
Expand All @@ -755,7 +755,7 @@ and wait for and return with the server's result, or with
:py:class:`ldap.extop.ExtendedResponse` this class is used to return an
object of this class instead of a raw BER value in respvalue.

.. py:method:: extop_result(self,msgid=ldap.RES_ANY,all=1,timeout=None) -> (respoid,respvalue)
.. py:method:: LDAPObject.extop_result(self,msgid=ldap.RES_ANY,all=1,timeout=None) -> (respoid,respvalue)
Wrapper method around :py:meth:`result4()` just for retrieving
the result of an extended operation sent before.
Expand Down

0 comments on commit 5545a9c

Please sign in to comment.