Branch: refs/heads/master Home: https://github.com/python/cpython Commit: a0ce375e10b50f7606cb86b072fed7d8cd574fe7 https://github.com/python/cpython/commit/a0ce375e10b50f7606cb86b072fed7d8cd574fe7 Author: Mark Dickinson <mdickinson at enthought.com> Date: 2017年04月05日 (2017年4月05日) Changed paths: M Doc/library/math.rst M Doc/whatsnew/3.7.rst M Lib/test/test_math.py M Misc/NEWS M Modules/mathmodule.c Log Message: ----------- bpo-29962: add math.remainder (#950) * Implement math.remainder. * Fix markup for arguments; use double spaces after period. * Mark up function reference in what's new entry. * Add comment explaining the calculation in the final branch. * Fix out-of-order entry in whatsnew. * Add comment explaining why it's good enough to compare m with c, in spite of possible rounding error.