diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-09-07 15:20:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-07 15:20:42 (GMT) |
commit | 012f5b968a738b15ae9b40c499a1c0778b0615a9 (patch) | |
tree | 2bf6fcfbd6a3d21b0a15663044a0396d062ae9ee /Lib/test/libregrtest/cmdline.py | |
parent | 23e65b25557f957af840cf8fe68e80659ce28629 (diff) | |
download | cpython-012f5b968a738b15ae9b40c499a1c0778b0615a9.zip cpython-012f5b968a738b15ae9b40c499a1c0778b0615a9.tar.gz cpython-012f5b968a738b15ae9b40c499a1c0778b0615a9.tar.bz2 |
bpo-34605, libregrtest: Rename --slaveargs to --worker-args (GH-9099)
Rename also run_tests_slave() to run_tests_worker().
Diffstat (limited to 'Lib/test/libregrtest/cmdline.py')
-rw-r--r-- | Lib/test/libregrtest/cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/libregrtest/cmdline.py b/Lib/test/libregrtest/cmdline.py index dab17c3..bd126b3 100644 --- a/Lib/test/libregrtest/cmdline.py +++ b/Lib/test/libregrtest/cmdline.py @@ -170,7 +170,7 @@ def _create_parser(): group.add_argument('--wait', action='store_true', help='wait for user input, e.g., allow a debugger ' 'to be attached') - group.add_argument('--slaveargs', metavar='ARGS') + group.add_argument('--worker-args', metavar='ARGS') group.add_argument('-S', '--start', metavar='START', help='the name of the test at which to start.' + more_details) |