diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-12-14 01:52:19 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-12-14 01:52:19 (GMT) |
commit | fc06999e0b7cd7460565f475e568a86915ec8672 (patch) | |
tree | 4081cf544d4b3fe53f7b3f97cfbef07378ad87ad /Lib/test/test_signal.py | |
parent | 98620d87f2e011cbdea384c1822a3325b491d048 (diff) | |
download | cpython-fc06999e0b7cd7460565f475e568a86915ec8672.zip cpython-fc06999e0b7cd7460565f475e568a86915ec8672.tar.gz cpython-fc06999e0b7cd7460565f475e568a86915ec8672.tar.bz2 |
#19970: Fix some comment typos.
Report and patch by Vajrasky Kok.
Diffstat (limited to 'Lib/test/test_signal.py')
-rw-r--r-- | Lib/test/test_signal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index 9b4ba50..191d4cf 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py @@ -825,7 +825,7 @@ class PendingSignalsTests(unittest.TestCase): # Unblock SIGUSR1 try: - # unblock the pending signal calls immediatly the signal handler + # unblock the pending signal calls immediately the signal handler signal.pthread_sigmask(signal.SIG_UNBLOCK, [signum]) except ZeroDivisionError: pass |