[Pyxine-checkins] pyxine/pxlib Callback.cc,1.1.1.1,1.2
Status: Pre-Alpha
Brought to you by:
dairiki
|
From: <da...@us...> - 2003-02-11 23:52:16
|
Update of /cvsroot/pyxine/pyxine/pxlib
In directory sc8-pr-cvs1:/tmp/cvs-serv11844/pxlib
Modified Files:
Callback.cc
Log Message:
Remove debugging calls to cerr.form().
Apparently ostream::form() is a GNU extension. Don't use it!
Index: Callback.cc
===================================================================
RCS file: /cvsroot/pyxine/pyxine/pxlib/Callback.cc,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Callback.cc 8 Feb 2003 00:42:21 -0000 1.1.1.1
+++ Callback.cc 11 Feb 2003 23:52:12 -0000 1.2
@@ -66,13 +66,11 @@
state = PyThreadState_New(PyThreadState_Get()->interp);
if (!state)
throw Error("PyThreadState_New failed");
- cerr.form("NEW PyThreadState: %p\n", state);
PyThreadState_Clear(state);
}
PythonContext::rep_t::~rep_t()
{
- cerr.form("DELETE PyThreadState: %p\n", state);
PyThreadState_Delete(state);
}
|