diff options
author | Mehrdad Afshari <mmx@google.com> | 2018-04-18 23:48:15 -0700 |
---|---|---|
committer | Mehrdad Afshari <mehrdada@users.noreply.github.com> | 2018-04-19 10:39:39 -0700 |
commit | dd9697fef8103b93cc9ecfbc71fa83cd838f1398 (patch) | |
tree | 4569d52a265241a52dbe1da80b5c366b72ec9217 /src | |
parent | 161194616190d82c85f2e9d5325a8fc39509909c (diff) |
Eliminate broad-except suppression
Diffstat (limited to 'src')
-rw-r--r-- | src/python/grpcio_tests/tests/stress/test_runner.py | 2 | ||||
-rw-r--r-- | src/python/grpcio_tests/tests/unit/_cython/test_utilities.py | 2 | ||||
-rw-r--r-- | src/python/grpcio_tests/tests/unit/_exit_test.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/python/grpcio_tests/tests/stress/test_runner.py b/src/python/grpcio_tests/tests/stress/test_runner.py index d5038e3ba2..764cda17fb 100644 --- a/src/python/grpcio_tests/tests/stress/test_runner.py +++ b/src/python/grpcio_tests/tests/stress/test_runner.py @@ -50,7 +50,7 @@ class TestRunner(threading.Thread): test_case.test_interoperability(self._stub, None) end_time = time.time() self._histogram.add((end_time - start_time) * 1e9) - except Exception as e: + except Exception as e: # pylint: disable=broad-except traceback.print_exc() self._exception_queue.put( Exception("An exception occured during test {}" diff --git a/src/python/grpcio_tests/tests/unit/_cython/test_utilities.py b/src/python/grpcio_tests/tests/unit/_cython/test_utilities.py index ee5c7795a9..7d5eaaaa84 100644 --- a/src/python/grpcio_tests/tests/unit/_cython/test_utilities.py +++ b/src/python/grpcio_tests/tests/unit/_cython/test_utilities.py @@ -25,7 +25,7 @@ class SimpleFuture(object): def wrapped_function(): try: self._result = function(*args, **kwargs) - except Exception as error: + except Exception as error: # pylint: disable=broad-except self._error = error self._result = None diff --git a/src/python/grpcio_tests/tests/unit/_exit_test.py b/src/python/grpcio_tests/tests/unit/_exit_test.py index 6e6d9de0fb..f40f3ae07c 100644 --- a/src/python/grpcio_tests/tests/unit/_exit_test.py +++ b/src/python/grpcio_tests/tests/unit/_exit_test.py @@ -49,7 +49,7 @@ def cleanup_processes(): for process in processes: try: process.kill() - except Exception: + except Exception: # pylint: disable=broad-except pass |