diff options
Diffstat (limited to 'Lib/test/support')
-rw-r--r-- | Lib/test/support/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index adc4e86..d051f96 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -2770,7 +2770,7 @@ class SaveSignals: import signal self.signal = signal self.signals = list(range(1, signal.NSIG)) - # SIGKILL and SIGSTOP signals cannot be ignored nor catched + # SIGKILL and SIGSTOP signals cannot be ignored nor caught for signame in ('SIGKILL', 'SIGSTOP'): try: signum = getattr(signal, signame) |