summaryrefslogtreecommitdiffstats
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index 9283f59..04ba33e 100644
--- a/Python/bytecodes.c
+++ b/Python/bytecodes.c
@@ -764,7 +764,7 @@ dummy_func(
ERROR_IF(w == NULL, error);
}
- inst(YIELD_VALUE, (retval --)) {
+ inst(YIELD_VALUE, (retval -- unused)) {
// NOTE: It's important that YIELD_VALUE never raises an exception!
// The compiler treats any exception raised here as a failed close()
// or throw() call.