File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ What's New in Stackless 3.X.X?
99
1010*Release date: 20XX-XX-XX*
1111
12+ - https://bitbucket.org/stackless-dev/stackless/issues/110
13+ Remove the already non functional remains of psyco support.
14+
1215- https://bitbucket.org/stackless-dev/stackless/issues/109
1316 The Stackless python*.dll no longer exports private symbols. Symbols
1417 required by Stackless-aware 3rd party extension modules should still be
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ extern "C" {
5151/* variables for the stackless protocol */
5252PyAPI_DATA (int ) slp_enable_softswitch ;
5353PyAPI_DATA (int ) slp_try_stackless ;
54- PyAPI_DATA (int ) slp_in_psyco ; /* required for compatibility with old extension modules */
5554
5655extern PyCStackObject * slp_cstack_chain ;
5756
Original file line number Diff line number Diff line change 2323
2424int slp_enable_softswitch = 1 ;
2525
26- /* compatibility mask for Psyco. It will be set to nonzero when
27- * psyco-compiled code is run. Suppresses soft-switching.
28- */
29- int slp_in_psyco = 0 ;
30-
3126/*
3227 * flag whether the next call should try to be stackless.
3328 * The protocol is: This flag may be only set if the called
You can’t perform that action at this time.
0 commit comments