diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-03-29 07:50:18 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-03-29 07:50:18 (GMT) |
commit | 80ec58c49730cb5498a279ee796ff037e8bbb3a7 (patch) | |
tree | 1e3538e077dc5c8598e4e66e4316b2d21782cb33 /Lib/test | |
parent | 50e648a06db7f4858e5f99f8490b86423befba60 (diff) | |
download | cpython-80ec58c49730cb5498a279ee796ff037e8bbb3a7.zip cpython-80ec58c49730cb5498a279ee796ff037e8bbb3a7.tar.gz cpython-80ec58c49730cb5498a279ee796ff037e8bbb3a7.tar.bz2 |
fix typo in comment
Thanks Arfrever for the report :)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/libregrtest/runtest_mp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/runtest_mp.py b/Lib/test/libregrtest/runtest_mp.py index aa97f05..33f632d 100644 --- a/Lib/test/libregrtest/runtest_mp.py +++ b/Lib/test/libregrtest/runtest_mp.py @@ -21,7 +21,7 @@ from test.libregrtest.setup import setup_tests # Display the running tests if nothing happened last N seconds PROGRESS_UPDATE = 30.0 # seconds -# If interrupted, display the wait process every N seconds +# If interrupted, display the wait progress every N seconds WAIT_PROGRESS = 2.0 # seconds |