]> granicus.if.org Git - python/commitdiff
bpo-32923: Unittest doc: replace `whilst` with `while` (GH-5833)
authorMariatta <Mariatta@users.noreply.github.com>
Fri, 23 Feb 2018 17:51:11 +0000 (09:51 -0800)
committerGitHub <noreply@github.com>
Fri, 23 Feb 2018 17:51:11 +0000 (09:51 -0800)
`whilst` and `while` are both english words, `whilst` is not as commonly used.
This can be confusing to readers whose primary language is not english.

Doc/library/unittest.rst

index 93ccd0fd61139c322948c79758639adbd723c6f5..af71be40b89ff275b4b28604d50a74debf4da6c3 100644 (file)
@@ -2316,7 +2316,7 @@ handling functionality within test frameworks.
 
    When called without arguments this function removes the control-c handler
    if it has been installed. This function can also be used as a test decorator
-   to temporarily remove the handler whilst the test is being executed::
+   to temporarily remove the handler while the test is being executed::
 
       @unittest.removeHandler
       def test_signal_handling(self):