aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/executor.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/executor.c')
-rw-r--r--Python/executor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/executor.c b/Python/executor.c
index 57525df202d..4a18618c0c6 100644
--- a/Python/executor.c
+++ b/Python/executor.c
@@ -41,7 +41,7 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject
lltrace = *uop_debug - '0'; // TODO: Parse an int and all that
}
#define DPRINTF(level, ...) \
- if (lltrace >= (level)) { fprintf(stderr, __VA_ARGS__); }
+ if (lltrace >= (level)) { printf(__VA_ARGS__); }
#else
#define DPRINTF(level, ...)
#endif