We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c93ea0a commit 7de9416Copy full SHA for 7de9416
pytest_twisted.py
@@ -109,6 +109,11 @@ def block_from_thread(d):
109
110
@decorator.decorator
111
def inlineCallbacks(fun, *args, **kw):
112
+ # TODO: it presumably doesn't matter but i really dislike how this
113
+ # creates a new inlineCallbacks for each call. but, that's
114
+ # a pretty irrelevant concern given that 1) it is just a function
115
+ # call overhead and 2) lots of tests are only called once anyways.
116
+ # but, this gets the feeling out of my head...
117
return defer.inlineCallbacks(fun)(*args, **kw)
118
119
0 commit comments