diff options
| author | Lisa Roach <lisaroach14@gmail.com> | 2018-09-13 23:56:23 -0700 |
|---|---|---|
| committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2018-09-13 23:56:23 -0700 |
| commit | 5ac704306f4b81ae3f28d8742408d3214b145e8a (patch) | |
| tree | 34a39f0216d918b679367a84e05f2326aef70a7c /Doc/whatsnew | |
| parent | 83df50ea5757816c7338d27f21fd18b1e79206f7 (diff) | |
| download | cpython-git-5ac704306f4b81ae3f28d8742408d3214b145e8a.tar.gz | |
bpo-33073: Adding as_integer_ratio to ints. (GH-8750)
Diffstat (limited to 'Doc/whatsnew')
| -rw-r--r-- | Doc/whatsnew/3.8.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index b2475c7df3..38b8623ddd 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -91,6 +91,10 @@ Other Language Changes was lifted. (Contributed by Serhiy Storchaka in :issue:`32489`.) +* The ``int`` type now has a new ``as_integer_ratio`` method compatible + with the existing ``float.as_integer_ratio`` method. + (Contributed by Lisa Roach in :issue:`33073`.) + * Added support of ``\N{name}`` escapes in :mod:`regular expressions <re>`. (Contributed by Jonathan Eunice and Serhiy Storchaka in :issue:`30688`.) |
