File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -746,7 +746,7 @@ PyTypeObject PyWrapperDescr_Type = {
746
746
0 , /* tp_descr_set */
747
747
};
748
748
749
- /* STACKLESS_DECLARE_METHOD(&PyWrapperDescr_Type, tp_call) */
749
+ STACKLESS_DECLARE_METHOD (& PyWrapperDescr_Type , tp_call )
750
750
751
751
static PyDescrObject *
752
752
descr_new (PyTypeObject * descrtype , PyTypeObject * type , const char * name )
Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ What's New in Stackless 3.X.X?
9
9
10
10
*Release date: 20XX-XX-XX*
11
11
12
+ - https://github.com/stackless-dev/stackless/issues/201
13
+ Enable stackless calls of "wrapper_descriptor" objects, if soft-switching is
14
+ enabled. The code has been in Stackless forever, but was disabled for some
15
+ unknown reason.
16
+
12
17
- https://github.com/stackless-dev/stackless/issues/200
13
18
Fix a bug in the C-API functions PyTasklet_Run_nr() and
14
19
PyTasklet_Switch_nr(). Under exotic conditions the functions could
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ static _stackless_method _stackless_methtable[] = {
19
19
/* from descrobject.c */
20
20
{& PyMethodDescr_Type , MFLAG_OFS (tp_call )},
21
21
{& PyClassMethodDescr_Type , MFLAG_OFS (tp_call )},
22
+ {& PyWrapperDescr_Type , MFLAG_OFS (tp_call )},
22
23
{& _PyMethodWrapper_Type , MFLAG_OFS (tp_call )},
23
24
/* from funcobject.c */
24
25
{& PyFunction_Type , MFLAG_OFS (tp_call )},
You can’t perform that action at this time.
0 commit comments