mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
delete unused local variable (pychecker caught)
This commit is contained in:
parent
4ee893fe39
commit
ae5c37b7b3
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class TestCase:
|
||||||
try:
|
try:
|
||||||
testMethod()
|
testMethod()
|
||||||
ok = 1
|
ok = 1
|
||||||
except self.failureException, e:
|
except self.failureException:
|
||||||
result.addFailure(self, self.__exc_info())
|
result.addFailure(self, self.__exc_info())
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
raise
|
raise
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue