We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Python/compile.c
1 parent bac0e11 commit 084e0f3Copy full SHA for 084e0f3
Python/compile.c
@@ -7476,12 +7476,14 @@ compiler_unit_metadata(struct compiler *c)
7476
return &c->u->u_metadata;
7477
}
7478
7479
+#ifndef NDEBUG
7480
static int
7481
compiler_is_top_level_await(struct compiler *c)
7482
{
7483
return c->c_flags.cf_flags & PyCF_ALLOW_TOP_LEVEL_AWAIT &&
7484
c->u->u_ste->ste_type == ModuleBlock;
7485
7486
+#endif
7487
7488
// Merge *obj* with constant cache, without recursion.
7489
int
0 commit comments