Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

gh-133895: provide C99 Annex F return values for math's functions#135008

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Draft
skirpichev wants to merge2 commits intopython:main
base:main
Choose a base branch
Loading
fromskirpichev:math-ValueError/133895

Conversation

skirpichev
Copy link
Contributor

@skirpichevskirpichev commentedJun 1, 2025
edited by github-actionsbot
Loading

Now this information is available as the "value" attribute of the ValueError exception object:

>>>import math>>>try:...     math.gamma(-0.0)...exceptValueErroras exc:...print(exc.value)...-inf

📚 Documentation preview 📚:https://cpython-previews--135008.org.readthedocs.build/

Now this information is available as the "value" attribute of theValueError exception object:```pycon>>> import math>>> try:...     math.gamma(-0.0)... except ValueError as exc:...     print(exc.value)...-inf```
@skirpichev
Copy link
ContributorAuthor

See also#134995

@skirpichevskirpichev changed the titlegh-133895: provide C99 Annex F return values for math functionsgh-133895: provide C99 Annex F return values for math's functionsJun 1, 2025
PyObject *value = PyFloat_FromDouble(x);

if (value) {
PyObject_SetAttrString(exc, "value", value);
Copy link
Member

Choose a reason for hiding this comment

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

This call can fail. Should we do something about it? or should we simply ignore the exception? or maybe chain it?

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

or should we simply ignore the exception?

I don't see better option so far. (Ditto for cmath.)

BTW, maybe I should also dropif (value) { clause.

or maybe chain it?

I doubt it's appropriate here. We don't handle ValueError here. This code just alter the raised exception object.

Copy link
Member

@picnixzpicnixzJun 1, 2025
edited
Loading

Choose a reason for hiding this comment

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

BTW, maybe I should also drop if (value) { clause.

I don't think you should, otherwisePyObject_SetAttrString will be called with an exception set (and with a NULL value it's the same as deleting the attribute)

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

will be called with an exception set

Why it's bad in this case?

and with a NULL value it's the same as deleting the attribute

But we are already ignore errors from the PyObject_SetAttrString :-)

Copy link
Member

Choose a reason for hiding this comment

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

Why it's bad in this case?

Don't we have an assert() somewhere that would fail if the error indicator is set?

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

I failed to find such case.

Though, we could explicitly call (twice) PyErr_Occurred() in appropriate places.

Looking on other cases of using PyErr_GetRaisedException() - I think that unraisable exceptions should be used here.

Copy link
ContributorAuthor

Choose a reason for hiding this comment

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

See cmath's pr, I did such change:#134995. Does it make sense for you?

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
@skirpichevskirpichev marked this pull request as draftJune 2, 2025 10:30
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@picnixzpicnixzpicnixz left review comments

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

2 participants
@skirpichev@picnixz

[8]ページ先頭

©2009-2025 Movatter.jp