gh-87849: fix SEND specialization family definition (GH-104268)

This commit is contained in:
Carl Meyer 2023-05-11 05:52:06 -06:00 committed by GitHub
parent e629ab6adf
commit 1670729383
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 177 additions and 176 deletions

View file

@ -512,7 +512,7 @@ _PyOpcode_num_pushed(int opcode, int oparg, bool jump) {
case SEND:
return 2;
case SEND_GEN:
return 1;
return 2;
case INSTRUMENTED_YIELD_VALUE:
return 1;
case YIELD_VALUE: