summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2019-08-11 21:40:59 (GMT)
committerGitHub <noreply@github.com>2019-08-11 21:40:59 (GMT)
commitf03b4c8a48f62134799d368b78da35301af466a3 (patch)
tree43a5a1282521e4164e63e05674dc7830319700ec /Misc
parent09a1872a8007048dcdf825a476816c5e3498b8f8 (diff)
downloadcpython-f03b4c8a48f62134799d368b78da35301af466a3.zip
cpython-f03b4c8a48f62134799d368b78da35301af466a3.tar.gz
cpython-f03b4c8a48f62134799d368b78da35301af466a3.tar.bz2
bpo-37819: Add Fraction.as_integer_ratio() (GH-15212)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-08-11-10-34-19.bpo-37819.LVJls-.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-11-10-34-19.bpo-37819.LVJls-.rst b/Misc/NEWS.d/next/Library/2019-08-11-10-34-19.bpo-37819.LVJls-.rst
new file mode 100644
index 0000000..cfc1f1a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-08-11-10-34-19.bpo-37819.LVJls-.rst
@@ -0,0 +1,2 @@
+Add Fraction.as_integer_ratio() to match the corresponding methods in bool,
+int, float, and decimal.