summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2018-02-23 17:51:11 (GMT)
committerGitHub <noreply@github.com>2018-02-23 17:51:11 (GMT)
commit98f42aac23f3863973cb6e9964c5212cfd3a1d98 (patch)
tree0fdbf09ca58b773d0a0be5f00f26066e154d2e73 /Doc/library
parentefa6c762268d68985f3012234f62ea9e5ced8b7c (diff)
downloadcpython-98f42aac23f3863973cb6e9964c5212cfd3a1d98.zip
cpython-98f42aac23f3863973cb6e9964c5212cfd3a1d98.tar.gz
cpython-98f42aac23f3863973cb6e9964c5212cfd3a1d98.tar.bz2
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.
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/unittest.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index 93ccd0f..af71be4 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -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):