-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[deprecation] Remove 'do_exit' from the 'Run' constructor #8472
[deprecation] Remove 'do_exit' from the 'Run' constructor #8472
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #8472 +/- ##
==========================================
+ Coverage 95.76% 95.78% +0.01%
==========================================
Files 174 174
Lines 18358 18348 -10
==========================================
- Hits 17581 17575 -6
+ Misses 777 773 -4
|
This comment has been minimized.
This comment has been minimized.
@@ -123,7 +123,6 @@ def __init__( | |||
args: Sequence[str], | |||
reporter: BaseReporter | None = None, | |||
exit: bool = True, # pylint: disable=redefined-builtin | |||
do_exit: Any = UNUSED_PARAM_SENTINEL, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can remove the sentinel as well right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch π
π€ According to the primer, this change has no effect on the checked open source code. π€π This comment was generated for commit c4b0afb |
Type of Changes
Description
Enacting planned deprecation.