This repository was archived by the owner on Feb 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ What's New in Stackless 2.7.XX?
10
10
11
11
*Release date: XXXX-XX-XX*
12
12
13
+ - https://github.com/stackless-dev/stackless/issues/167
14
+ Replace 'printf(...)' calls by PySys_WriteStderr(...). They are used to emit
15
+ an error message, if there is a pending error while entering Stackless
16
+ subsystem.
17
+
13
18
- https://github.com/stackless-dev/stackless/issues/166
14
19
Fix C-API functions PyEval_EvalFrameEx() and PyEval_EvalFrame().
15
20
They are now compatible with C-Python.
Original file line number Diff line number Diff line change @@ -1296,9 +1296,9 @@ slp_initialize_main_and_current(void)
1296
1296
Py_XINCREF (value );
1297
1297
Py_XINCREF (traceback );
1298
1298
PyErr_Restore (type , value , traceback );
1299
- printf ("Pending error while entering Stackless subsystem:\n" );
1299
+ PySys_WriteStderr ("Pending error while entering Stackless subsystem:\n" );
1300
1300
PyErr_Print ();
1301
- printf ("Above exception is re-raised to the caller.\n" );
1301
+ PySys_WriteStderr ("Above exception is re-raised to the caller.\n" );
1302
1302
PyErr_Restore (type , value , traceback );
1303
1303
#endif
1304
1304
return 1 ;
You can’t perform that action at this time.
0 commit comments