Skip to content
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

tensorflow: Change Tensor.__bool__ return from NoReturn to bool #13562

Merged
merged 1 commit into from
Feb 28, 2025

Conversation

hoel-bagard
Copy link
Contributor

Closes #13365

This change will remove the false positives currently happening with valid code such as

bool(tf.constant(1))       # True
bool(tf.constant([1]))     # True
bool(tf.constant([[0]]))   # False 

It will however introduce false negatives when using bool on tensors with more than one element:

bool(tf.constant([1, 1]))     # Error

Copy link
Contributor

According to mypy_primer, this change has no effect on the checked open source code. 🤖🎉

@hoel-bagard hoel-bagard marked this pull request as ready for review February 28, 2025 18:02
@hoel-bagard
Copy link
Contributor Author

@srittau If you have time to have a look.

Copy link
Collaborator

@srittau srittau left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! False negatives are preferable to false positives.

@srittau srittau merged commit 20aef1d into python:main Feb 28, 2025
43 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

tensorflow: Tensor.__bool__'s signature is incorrect for one element tensors
2 participants