gh-67795: Accept any real numbers as timestamp and timeout#139224
Merged
serhiy-storchaka merged 3 commits intopython:mainfrom Sep 23, 2025
Merged
gh-67795: Accept any real numbers as timestamp and timeout#139224serhiy-storchaka merged 3 commits intopython:mainfrom
serhiy-storchaka merged 3 commits intopython:mainfrom
Conversation
Functions that take timestamp or timeout arguments now accept any real numbers, not only integers or floats, although this does not improve precision.
Member
|
Nice, it works as expected: $ ./python
>>> import socket, fractions, decimal
>>> socket.setdefaulttimeout(fractions.Fraction(1, 5))
>>> socket.getdefaulttimeout()
0.2
>>> socket.setdefaulttimeout(decimal.Decimal('1.5'))
>>> socket.getdefaulttimeout()
1.5 |
vstinner
approved these changes
Sep 22, 2025
Member
vstinner
left a comment
There was a problem hiding this comment.
LGTM. You may just mention Decimal and Fraction in the global NEWS entry.
Doc/whatsnew/3.15.rst
Outdated
|
|
||
| * Functions that take timestamp or timeout arguments now accept any | ||
| real numbers, not only integers or floats, although this does not | ||
| improve precision. |
Member
There was a problem hiding this comment.
You may give Decimal and Fraction as examples.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Functions that take timestamp or timeout arguments now accept any real numbers, not only integers or floats, although this does not improve precision.
📚 Documentation preview 📚: https://cpython-previews--139224.org.readthedocs.build/