Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
bpo-26680: NEWS entries for int, the numeric ABCs and Decimal.
  • Loading branch information
rob-smallshire committed Sep 18, 2020
commit 11db7f890e089b475c4b136ca98b3828e0fd02c0
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The int type now supports the x.is_integer() method for compatibility with
float.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The x.is_integer() method is incorporated into the abstract types of the
numeric tower, Real, Rational and Integral, with appropriate default
implementations.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The d.is_integer() method is added to the Decimal type, for compatibility
with other number types.