Eliminated deprecated call to 'apply' in favor of direct function call, in order to gain more detailed Python Profiler data

This commit is contained in:
wesbell 2007-05-07 04:58:11 +00:00
parent a333a993fa
commit 7d4e840bad
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ class Messenger:
# method itself might call accept() or acceptOnce()
# again.
assert callable(method)
apply(method, (extraArgs + sentArgs))
method (*(extraArgs + sentArgs))
def clear(self):
"""