Comment 1 for bug 1274566

Revision history for this message
John Vandenberg (jayvdb) wrote :

Also assignments preceding a return/raise, but not used in that branch.

def foo(a):
    if a:
        x = 10
        return a
    else:
        x = 20

    return x