Skip to content

Commit e334e53

Browse files
committed
Comment out debug print
1 parent aca2939 commit e334e53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Python/ceval.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3178,6 +3178,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, PyFrameObject *f, int throwflag)
31783178
if (la->hint < 0) {
31793179
/* Even faster path -- slot hint */
31803180
Py_ssize_t offset = ~la->hint;
3181+
// fprintf(stderr, "Using hint for offset %zd\n", offset);
31813182
char *addr = (char *)owner + offset;
31823183
res = *(PyObject **)addr;
31833184
if (res != NULL) {
@@ -3262,7 +3263,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, PyFrameObject *f, int throwflag)
32623263
// First time we optimize this opcode.
32633264
OPCACHE_STAT_ATTR_OPT();
32643265
co_opcache->optimized = OPCODE_CACHE_MAX_TRIES;
3265-
fprintf(stderr, "Setting hint for %s, offset %zd\n", dmem->name, offset);
3266+
// fprintf(stderr, "Setting hint for %s, offset %zd\n", dmem->name, offset);
32663267
}
32673268

32683269
la = &co_opcache->u.la;

0 commit comments

Comments
 (0)