File tree 1 file changed +9
-15
lines changed
1 file changed +9
-15
lines changed Original file line number Diff line number Diff line change @@ -96,39 +96,33 @@ cdef inline run_in_context(context, method):
96
96
# certain circumstances, inlined context.run() will not hold a reference to
97
97
# the given method instance, which - if deallocated - will cause segfault.
98
98
# See also: edgedb/edgedb#2222
99
+ Context_Enter(context)
99
100
Py_INCREF(method)
100
101
try :
101
- Context_Enter(context)
102
- try :
103
- return method()
104
- finally :
105
- Context_Exit(context)
102
+ return method()
106
103
finally :
107
104
Py_DECREF(method)
105
+ Context_Exit(context)
108
106
109
107
110
108
cdef inline run_in_context1(context, method, arg):
109
+ Context_Enter(context)
111
110
Py_INCREF(method)
112
111
try :
113
- Context_Enter(context)
114
- try :
115
- return method(arg)
116
- finally :
117
- Context_Exit(context)
112
+ return method(arg)
118
113
finally :
119
114
Py_DECREF(method)
115
+ Context_Exit(context)
120
116
121
117
122
118
cdef inline run_in_context2(context, method, arg1, arg2):
119
+ Context_Enter(context)
123
120
Py_INCREF(method)
124
121
try :
125
- Context_Enter(context)
126
- try :
127
- return method(arg1, arg2)
128
- finally :
129
- Context_Exit(context)
122
+ return method(arg1, arg2)
130
123
finally :
131
124
Py_DECREF(method)
125
+ Context_Exit(context)
132
126
133
127
134
128
# Used for deprecation and removal of `loop.create_datagram_endpoint()`'s
You can’t perform that action at this time.
0 commit comments