This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author lemburg
Recipients lemburg
Date 2021-11-29.14:15:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1638195345.59.0.368504787144.issue45927@roundup.psfhosted.org>
In-reply-to
Content
From the code:

        opts, args = getopt.getopt(args, "n:u:s:r:tcpvh",
                                   ["number=", "setup=", "repeat=",
                                    "time", "clock", "process",
                                    "verbose", "unit=", "help"])

but the options -c and -t are not used in the subsequent code.

This can lead to situations where if you mistype e.g. -s as -c, you get completely wrong results (see https://bugs.python.org/issue45902 for an example).
History
Date User Action Args
2021-11-29 14:15:45lemburgsetrecipients: + lemburg
2021-11-29 14:15:45lemburgsetmessageid: <1638195345.59.0.368504787144.issue45927@roundup.psfhosted.org>
2021-11-29 14:15:45lemburglinkissue45927 messages
2021-11-29 14:15:45lemburgcreate