forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pythongh-90085: Remove vestigial -t and -c timeit options (python#94941)
See bpo-28240. The functionality was removed in 3d7feb9. The options had been deprecated since Python 3.3
- Loading branch information
1 parent
c437b6e
commit 5a71338
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
Misc/NEWS.d/next/Library/2022-07-17-22-31-32.gh-issue-90085.c4FWcS.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Remove ``-c/--clock`` and ``-t/--time`` CLI options of :mod:`timeit`. | ||
The options had been deprecated since Python 3.3 and the functionality | ||
was removed in Python 3.7. Patch by Shantanu Jain. |