From e86a9463e546aff6f15b6e2cd817c4d95f8fc698 Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Tue, 6 Oct 2020 18:19:32 -0700 Subject: [PATCH] Add comment for _signal_sent [ci skip-build-wheels] --- src/python/pants/base/exception_sink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/pants/base/exception_sink.py b/src/python/pants/base/exception_sink.py index 2f07b70d9df..799a31b5f0e 100644 --- a/src/python/pants/base/exception_sink.py +++ b/src/python/pants/base/exception_sink.py @@ -131,7 +131,7 @@ class ExceptionSink: _pid_specific_error_fileobj = None _shared_error_fileobj = None - # Set in methods on SignalHandler and exposed to the engine rust code. + # Stores a signal received by the signal-handling logic so that rust code can check for it. _signal_sent: Optional[int] = None def __new__(cls, *args, **kwargs):