bpo-40334: Support suppressing of multiple optional variables in Pegen (GH-20367)

This commit is contained in:
Batuhan Taskaya 2020-05-25 01:20:18 +03:00 committed by GitHub
parent c73914a562
commit cba5031510
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -694,8 +694,8 @@ def visit_Alt(
if v == "_cut_var":
v += " = 0" # cut_var must be initialized
self.print(f"{var_type}{v};")
if v == "_opt_var":
self.print("UNUSED(_opt_var); // Silence compiler warnings")
if v.startswith("_opt_var"):
self.print(f"UNUSED({v}); // Silence compiler warnings")
with self.local_variable_context():
if is_loop: