Thanks to visit codestin.com
Credit goes to github.com

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
Fix issues prefixes
  • Loading branch information
skirpichev committed Feb 9, 2023
commit 06e9c8c56fb92448a906ca5375e8c9424de4554f
2 changes: 1 addition & 1 deletion Modules/_math.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
static double
_Py_log1p(double x)
{
/* Some platforms (e.g. MacOS X 10.8, see #59682) supply a log1p function
/* Some platforms (e.g. MacOS X 10.8, see gh-59682) supply a log1p function
but don't respect the sign of zero: log1p(-0.0) gives 0.0 instead of
the correct result of -0.0.

Expand Down
2 changes: 1 addition & 1 deletion Modules/mathmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ m_sinpi(double x)
}

/* Implementation of the real gamma function. Kept here to work around
issues (see e.g. #70309) with quality of libm's tgamma/lgamma implementations
issues (see e.g. gh-70309) with quality of libm's tgamma/lgamma implementations
on various platforms (Windows, MacOS). In extensive but non-exhaustive
random tests, this function proved accurate to within <= 10 ulps across the
entire float domain. Note that accuracy may depend on the quality of the
Expand Down