We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
This change implements support for the x.is_integer() predicate across all built-in and standard library concrete numeric types: int, bool, Fraction and Decimal; previously it was supported only on float. It also incorporates is_integer() into the abstract types Real, Rational and Integral, with appropriate default implementations at each level.
x.is_integer()
int
bool
Fraction
Decimal
float
is_integer()
Real
Rational
Integral
Updates to the relevant documentation and test suites are included.
https://bugs.python.org/issue26680
Sorry, something went wrong.
This issue is probably languishing because of the amount of controversy it generated. Was there a pronouncement from Guido on the mailing lists?
Regardless, it would be nice to get at least +-0 from @tim-one. I'm +1 on this.
pronouncement on python-dev.
Regardless, it would be nice to get at least +-0 from @tim-one.
+1 in principle. I haven't reviewed the code changes, and am unlikely to have the bandwidth to do so in the near future.
@skrah Is there anything I can do to help move this along?
@mdickinson is also in favor.
I probably have time to review this before the beta-1 release, which is 2019-05-27.
There was a problem hiding this comment.
The reason will be displayed to describe this comment to others. Learn more.
Mostly LGTM; a few comments and suggestions.
We'll need a "whatsnew" entry, and we're missing some ".. versionchanged: " notes in the documentation updates.
Could we convert this to Argument Clinic? It seems somewhat trivial, but one advantage is having the docstring close to the definition. Another is having docstring consistency between int.is_integer and float.is_integer.
int.is_integer
float.is_integer
Done.
I suggest following the usual convention for optional arguments and passing the rounding mode by name (rounding=ROUND_FLOOR).
rounding=ROUND_FLOOR
Done
Please can we replace this with something that isn't a question? Something like the other docstrings ("Return True if the operand is integral; otherwise return False.") would be fine. (Also applies to Rational.is_integer below.)
Rational.is_integer
Would it be worth adding a couple of tests for cases where the exponent isn't 0, e.g. Decimal("1e2") and Decimal("100e-2")? We should also test the behaviour for signalling NaNs
0
Decimal("1e2")
Decimal("100e-2")
Ideally, we'd also test that no Decimal floating-point flags are ever raised. An easy way to do this would be to add some testcases to Lib/test/decimaltestdata/extra.decTest, which will check that exactly the flags mentioned are raised for each given testcase.
Lib/test/decimaltestdata/extra.decTest
Please add a .. versionadded:: 3.10 note here and in the other relevant bits of documentation.
.. versionadded:: 3.10
EDIT: edited the comment to update the version; the original suggestion of 3.8 is obviously out of date
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated.
Once you have made the requested changes, please leave a comment on this pull request containing the phrase I have made the requested changes; please review again. I will then notify any core developers who have left a review that you're ready for them to take another look at this pull request.
I have made the requested changes; please review again
I haven't had capacity to do the requisite changes for 3.8. I propose going for 3.9.
@mdickinson's review comments. Once everything looks good, it will make it into whichever release is master at the time, which right now would be 3.10. Thanks!
@csabella Will do. I've scheduled some time to dedicate to this in early June.
@rob-smallshire, any plans to return?
@eric-wieser Yes, absolutely. I've been looking at the required changes. I'll be pushing updates soon.
e745028
e6a66a7
Status update: rebased to resume work on the outstanding issues.
1cacea7
Thanks! Please ping me when you're done with updates and ready for re-review.
bpo-26680: Adds support for int.is_integer() for compatibility with f…
d80b017
…loat.is_integer(). The int.is_integer() method always returns True.
bpo-26680: Adds a test to ensure that False.is_integer() and True.is_…
b46a9dc
…integer() are always True.
138f704
Must denominator and numerator always be fully reduced?
denominator
numerator
If not,
Yes, self.numerator and self.denominator will always be relatively prime in normal use (and denominator will always be positive). Other parts of the fractions module assume this, so it's safe to just check self.denominator == 1 here.
self.numerator
self.denominator
self.denominator == 1
This isn't about Fraction and its implementation of the Rational API though - this is about whether the API mandates the implementation behaves this way.
Ah. I see the doc is """.numerator and .denominator should be in lowest terms.""" - so perhaps worth clarifying that denominator should always be positive too.
""".numerator and .denominator should be in lowest terms."""
Yes, that docstring could definitely be improved. Apart from that clarification, we could do with a line or two describing what the Rational class is actually for, rather than launching straight into a detail. But that's a job for a separate PR.
a6a5490
bpo-26680: Adds Real.is_integer() with a trivial implementation using…
3b1677f
… conversion to int. This default implementation is intended to reduce the workload for subclass implementers. It is not robust in the presence of infinities or NaNs and may have suboptimal performance for other types.
bpo-26680: Adds Rational.is_integer which returns True if the denomin…
f78bf5c
…ator is one. This implementation assumes the Rational is represented in it's lowest form, as required by the class docstring.
bpo-26680: Adds Integral.is_integer which always returns True.
6a905a8
1ded358
821aad6
bpo-26680: Updates documentation for Real.is_integer and built-ins in…
3ae9866
…t and float. The call x.is_integer() is now listed in the table of operations which apply to all numeric types except complex, with a reference to the full documentation for Real.is_integer(). Mention of is_integer() has been removed from the section 'Additional Methods on Float'. The documentation for Real.is_integer() describes its purpose, and mentions that it should be overridden for performance reasons, or to handle special values like NaN.
fba90b3
bpo-26680: Adds Decimal.is_integer to the Python and C implementations.
54ca820
The C implementation of Decimal already implements and uses mpd_isinteger internally, we just expose the existing function to Python. The Python implementation uses internal conversion to integer using to_integral_value(). In both cases, the corresponding context methods are also implemented. Tests and documentation are included.
bpo-26680: Updates the ACKS file.
a9e364d
bpo-26680: NEWS entries for int, the numeric ABCs and Decimal.
11db7f8
@mdickinson I believe I now have made all the changes you requested, and all checks are passing.
LGTM. All my comments are addressed.
One day it would be nice to fix all these docstrings for consistency (both with one another and with PEP 257). But not today.
Indeed, when you hop around the code you notice how different they all are. I tried to go for local consistency rather than global consistency.
I'll leave this open for a couple of days in case @skrah has further comments.
Anything I can do to help get this merged @mdickinson ?
Apart from pinging me in case I've forgotten? Nothing else I can think of ...
Merging shortly. Thank you!
58a7da9
Hi! The buildbot aarch64 RHEL7 3.x has failed when building commit 58a7da9.
What do you need to do:
You can take a look at the buildbot page here:
https://buildbot.python.org/all/#builders/539/builds/133
Summary of the results of the build (if available):
== Tests result: ENV CHANGED ==
408 tests OK.
10 slowest tests:
1 test altered the execution environment: test_asyncio
14 tests skipped: test_devpoll test_gdb test_ioctl test_kqueue test_msilib test_ossaudiodev test_startfile test_tix test_tk test_ttk_guionly test_winconsoleio test_winreg test_winsound test_zipfile64
Total duration: 8 min 3 sec
Traceback (most recent call last): File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/asyncio/sslproto.py", line 321, in __del__ self.close() File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/asyncio/sslproto.py", line 316, in close self._ssl_protocol._start_shutdown() File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/asyncio/sslproto.py", line 590, in _start_shutdown self._abort() File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/asyncio/sslproto.py", line 731, in _abort self._transport.abort() File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/asyncio/selector_events.py", line 680, in abort self._force_close(None) File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/asyncio/selector_events.py", line 731, in _force_close self._loop.call_soon(self._call_connection_lost, exc) File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/asyncio/base_events.py", line 746, in call_soon self._check_closed() File "/home/buildbot/buildarea/3.x.cstratak-RHEL7-aarch64/build/Lib/asyncio/base_events.py", line 510, in _check_closed raise RuntimeError('Event loop is closed') RuntimeError: Event loop is closed
It seems rather unlikely that that buildbot failure is related (test_asyncio changed the environment). But it's odd that I don't see the same buildbot failure on other recent PRs.
Why was this merged? Guido was clear, "It should not go on the numeric tower."
Revert "bpo-26680: Incorporate is_integer in all built-in and standar…
1cc1a8f
…d library numeric types (GH-6121)" This reverts commit 58a7da9.
4e0ce82
…d library numeric types (GH-22584) This reverts commit 58a7da9.
Merge remote-tracking branch 'origin/master' into bpo_39337_new_2
a69eef8
* origin/master: (147 commits) Fix the attribute names in the docstring of GenericAlias (pythonGH-22594) bpo-39337: Add a test case for normalizing of codec names (pythonGH-19069) bpo-41557: Update Windows installer to use SQLite 3.33.0 (pythonGH-21960) bpo-41976: Fix the fallback to gcc of ctypes.util.find_library when using gcc>9 (pythonGH-22598) bpo-41306: Allow scale value to not be rounded (pythonGH-21715) bpo-41970: Avoid test failure in test_lib2to3 if the module is already imported (pythonGH-22595) bpo-41376: Fix the documentation of `site.getusersitepackages()` (pythonGH-21602) Revert "bpo-26680: Incorporate is_integer in all built-in and standard library numeric types (pythonGH-22584) bpo-41923: PEP 613: Add TypeAlias to typing module (python#22532) Fix comment about PyObject_IsTrue. (pythonGH-22343) bpo-38605: Make 'from __future__ import annotations' the default (pythonGH-20434) bpo-41905: Add abc.update_abstractmethods() (pythonGH-22485) bpo-41944: No longer call eval() on content received via HTTP in the UnicodeNames tests (pythonGH-22575) bpo-41944: No longer call eval() on content received via HTTP in the CJK codec tests (pythonGH-22566) Post 3.10.0a1 Python 3.10.0a1 bpo-41584: clarify when the reflected method of a binary arithemtic operator is called (python#22505) bpo-41939: Fix test_site.test_license_exists_at_url() (python#22559) bpo-41774: Tweak new programming FAQ entry (pythonGH-22562) bpo-41936. Remove macros Py_ALLOW_RECURSION/Py_END_ALLOW_RECURSION (pythonGH-22552) ...
bpo-26680: Incorporate is_integer in all built-in and standard librar…
298c857
…y numeric types (pythonGH-6121) * bpo-26680: Adds support for int.is_integer() for compatibility with float.is_integer(). The int.is_integer() method always returns True. * bpo-26680: Adds a test to ensure that False.is_integer() and True.is_integer() are always True. * bpo-26680: Adds Real.is_integer() with a trivial implementation using conversion to int. This default implementation is intended to reduce the workload for subclass implementers. It is not robust in the presence of infinities or NaNs and may have suboptimal performance for other types. * bpo-26680: Adds Rational.is_integer which returns True if the denominator is one. This implementation assumes the Rational is represented in it's lowest form, as required by the class docstring. * bpo-26680: Adds Integral.is_integer which always returns True. * bpo-26680: Adds tests for Fraction.is_integer called as an instance method. The tests for the Rational abstract base class use an unbound method to sidestep the inability to directly instantiate Rational. These tests check that everything works correct as an instance method. * bpo-26680: Updates documentation for Real.is_integer and built-ins int and float. The call x.is_integer() is now listed in the table of operations which apply to all numeric types except complex, with a reference to the full documentation for Real.is_integer(). Mention of is_integer() has been removed from the section 'Additional Methods on Float'. The documentation for Real.is_integer() describes its purpose, and mentions that it should be overridden for performance reasons, or to handle special values like NaN. * bpo-26680: Adds Decimal.is_integer to the Python and C implementations. The C implementation of Decimal already implements and uses mpd_isinteger internally, we just expose the existing function to Python. The Python implementation uses internal conversion to integer using to_integral_value(). In both cases, the corresponding context methods are also implemented. Tests and documentation are included. * bpo-26680: Updates the ACKS file. * bpo-26680: NEWS entries for int, the numeric ABCs and Decimal. Co-authored-by: Robert Smallshire <[email protected]>
9237628
…d library numeric types (pythonGH-22584) This reverts commit 58a7da9.
ENH: Add integer.is_integer
integer.is_integer
9f11564
Match `int.is_integer`, which was added in python/cpython#6121
a8ca01c
rhettinger Awaiting requested review from rhettinger
skrah Awaiting requested review from skrah
eric-wieser eric-wieser left review comments
mdickinson mdickinson approved these changes
Successfully merging this pull request may close these issues.