comparison contrib/bdiff-torture.py @ 41365:876494fd967d

cleanup: delete lots of unused local variables These were found by IntelliJ. There are many more, but these seemed pretty safe. Differential Revision: https://phab.mercurial-scm.org/D5629
author Martin von Zweigbergk <martinvonz@google.com>
date Thu, 17 Jan 2019 09:17:12 -0800
parents 0c73634d0570
children 3316e59b0105
comparison
equal deleted inserted replaced
41364:0132221c25cd 41365:876494fd967d
23 continue 23 continue
24 tries += 1 24 tries += 1
25 25
26 try: 26 try:
27 test1(a, b) 27 test1(a, b)
28 except Exception as inst: 28 except Exception:
29 reductions += 1 29 reductions += 1
30 tries = 0 30 tries = 0
31 a = a2 31 a = a2
32 b = b2 32 b = b2
33 33