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?
9
9
10
10
*Release date: 20XX-XX-XX*
11
11
12
+ - https://bitbucket.org/stackless-dev/stackless/issues/110
13
+ Remove the already non functional remains of psyco support.
14
+
12
15
- https://bitbucket.org/stackless-dev/stackless/issues/109
13
16
The Stackless python*.dll no longer exports private symbols. Symbols
14
17
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" {
51
51
/* variables for the stackless protocol */
52
52
PyAPI_DATA (int ) slp_enable_softswitch ;
53
53
PyAPI_DATA (int ) slp_try_stackless ;
54
- PyAPI_DATA (int ) slp_in_psyco ; /* required for compatibility with old extension modules */
55
54
56
55
extern PyCStackObject * slp_cstack_chain ;
57
56
Original file line number Diff line number Diff line change 23
23
24
24
int slp_enable_softswitch = 1 ;
25
25
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
-
31
26
/*
32
27
* flag whether the next call should try to be stackless.
33
28
* The protocol is: This flag may be only set if the called
You can’t perform that action at this time.
0 commit comments