cleaning up documentation

This commit is contained in:
Amr Hassan 2008-08-19 12:31:34 +00:00
parent d5866dac1b
commit 4676e8ecd6

View file

@ -130,9 +130,9 @@ class Asynchronizer(threading.Thread):
def async_call(self, callback, call, *call_args): def async_call(self, callback, call, *call_args):
"""This is the function for setting up an asynchronous operation. """This is the function for setting up an asynchronous operation.
callback: the function to callback afterwards, accepting two argument, one being the sender and the other is the return of the target call. * callback: the function to callback afterwards, accepting two argument, one being the sender and the other is the return of the target call.
call: the target call. * call: the target call.
*call_args: any number of arguments to pass to the target call function. * *call_args: any number of arguments to pass to the target call function.
""" """
self._calls[call] = call_args self._calls[call] = call_args