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:
parent
a333a993fa
commit
7d4e840bad
|
|
@ -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):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in New Issue