bpo-32923: Unittest doc: replace `whilst` with `while` (GH-5833)

`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.
(cherry picked from commit 98f42aac23)

Co-authored-by: Mariatta <Mariatta@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2018-02-23 10:14:23 -08:00 committed by GitHub
parent 079d75d099
commit 1ad6ca5eb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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):