example code: with (x, y) as (a, b): ... will not create declarations for a, b. The proper fix is to create a generic visitVariableTuple function which visits all names in a tuple as variable declarations, and assigns proper types to them. We have this functionality spread across two or three places here, and we shouldn't add another one. Reproducible: Always
Fixed in Python 3, not gonna fix it for 2.