10000 bpo-29962: add math.remainder by mdickinson · Pull Request #950 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-29962: add math.remainder #950

New issue

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

Merged
merged 7 commits into from
Apr 5, 2017
Merged
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
10000
Diff view
Diff view
Prev Previous commit
Next Next commit
Mark up function reference in what's new entry.
  • Loading branch information
mdickinson committed Apr 1, 2017
commit 49aaa2afdbb0fcbdb193e64c9b69c9b68e1536e5
4 changes: 2 additions & 2 deletions Doc/whatsnew/3.7.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ on Unix. (Contributed by Serhiy Storchaka in :issue:`25996`.)
math
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

math should be between locale and os.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whoops, so it should. Thanks!

----

New ``remainder`` function, implementing the IEEE 754-style remainder
operation. (Constructed by Mark Dickinson in :issue:`29962`.)
New :func:`~math.remainder` function, implementing the IEEE 754-style remainder
operation. (Contributed by Mark Dickinson in :issue:`29962`.)

unittest.mock
-------------
Expand Down
0