1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# `if` blocks are used to separate test cases
x = 1
y = 2
# these will match
if True:
tmp = x
x = y
y = tmp
if True:
filler = 1
tmp = x
x = y
y = tmp
if True:
filler = 1
filler = 2
tmp = x
x = y
y = tmp
if True:
tmp = x
x = y
y = tmp
tmp = x
x = y
y = tmp
# these will not
if True:
tmp = x
y = tmp
x = y
if True:
tmp = x
x = y
tmp = 1
y = tmp
if True:
tmp = x
x = y
pass
y = tmp
from typing import TYPE_CHECKING
# See https://github.com/dosisod/refurb/issues/23
if not TYPE_CHECKING:
x = tmp
x = tmp
x = tmp
|