-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
bpo-29271: Fix Task.current_task and Task.all_tasks to accept None. #406
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -688,6 +688,9 @@ Library | |
- Issue #24142: Reading a corrupt config file left configparser in an | ||
invalid state. Original patch by Florian Höch. | ||
|
||
- Issue #29271: Fix Task.current_task and Task.all_tasks to accept | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Move the entry to the start of the section. Mention that this fixes C implementation, makes it conforming to Python implementation. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aren't we usually appending news items instead of prepending? |
||
None argument. | ||
|
||
Windows | ||
------- | ||
|
||
|
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.
Why not use
assertIs()
?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.
good catch