index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
mathmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-122943: Rework support of var-positional parameter in Argument Clinic (GH-...
Serhiy Storchaka
2024-11-07
1
-20/+23
*
gh-119793: Prefer `map(..., strict=True)` over starmap/zip in examples (#126407)
Lukas Geiger
2024-11-05
1
-2/+2
*
gh-120026: soft deprecate Py_HUGE_VAL macro (#120027)
Sergey B Kirpichev
2024-11-01
1
-7/+7
*
gh-101123: Adapt vararg functions in the math module to Argument Clinic (#126...
Sergey B Kirpichev
2024-10-31
1
-36/+44
*
gh-123497: New limit for Python integers on 64-bit platforms (GH-123724)
Serhiy Storchaka
2024-09-29
1
-13/+12
*
gh-123836: workaround fmod(x, y) bug on Windows (#124171)
Sergey B Kirpichev
2024-09-17
1
-0/+9
*
gh-121485: Always use 64-bit integers for integers bits count (GH-121486)
Serhiy Storchaka
2024-08-30
1
-4/+4
*
gh-122681: remove m_atan2()/c_atan2() helpers (#122715)
Sergey B Kirpichev
2024-08-17
1
-1/+1
*
gh-122681: merge m_atan2() and c_atan2() helper functions (#122682)
Sergey B Kirpichev
2024-08-06
1
-37/+0
*
gh-121905: Consistently use "floating-point" instead of "floating point" (GH-...
Serhiy Storchaka
2024-07-19
1
-7/+7
*
gh-119613: Use C99+ functions instead of Py_IS_NAN/INFINITY/FINITE (#119619)
Sergey B Kirpichev
2024-05-29
1
-70/+70
*
gh-118671: Updated dead ActiveState links (#118730)
trag1c
2024-05-08
1
-1/+1
*
gh-116322: Add Py_mod_gil module slot (#116882)
Brett Simmers
2024-05-03
1
-0/+1
*
gh-73468: Add math.fma() function (#116667)
Victor Stinner
2024-03-17
1
-0/+43
*
gh-111417: Remove unused code block in math.trunc() and round() (GH-111454)
Jason Zhang
2024-02-03
1
-5/+0
*
gh-114569: Use PyMem_* APIs for most non-PyObject uses (#114574)
Erlend E. Aasland
2024-01-26
1
-6/+6
*
gh-111139: Optimize math.gcd(int, int) (#113887)
Victor Stinner
2024-01-10
1
-5/+9
*
gh-111342: fix typo in math.sumprod (GH-111416)
Sergey B Kirpichev
2023-10-28
1
-1/+1
*
gh-110489: Optimise math.ceil for known exact float (#108801)
Shantanu
2023-10-06
1
-7/+9
*
gh-102837: improve test coverage for math module (#102523)
Sergey B Kirpichev
2023-09-03
1
-10/+7
*
gh-106320: Remove private AC converter functions (#108505)
Victor Stinner
2023-08-26
1
-0/+1
*
gh-86493: Fix possible leaks in some modules initialization (GH-106768)
Serhiy Storchaka
2023-07-18
1
-5/+5
*
gh-94673: Ensure subtypes are readied only once in math.trunc() (gh-105465)
neonene
2023-06-07
1
-1/+1
*
gh-94906: Support multiple steps in math.nextafter (#103881)
Matthias Görgens
2023-05-19
1
-4/+105
*
gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)
Sebastian Berg
2023-05-10
1
-35/+4
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
Fix typo in math.log docstring (#103943)
Wes Turner
2023-04-28
1
-1/+1
*
gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)
Eric Snow
2023-04-27
1
-1/+1
*
GH-101291: Rearrange the size bits in PyLongObject (GH-102464)
Mark Shannon
2023-03-22
1
-9/+10
*
gh-102839: remove AC for math.log (GH-102863)
Sergey B Kirpichev
2023-03-21
1
-21/+14
*
Add more comments to hypot() (GH-102817)
Raymond Hettinger
2023-03-18
1
-18/+12
*
Simplify and improve accuracy for subnormals in hypot() (GH-102785)
Raymond Hettinger
2023-03-17
1
-35/+28
*
Simplify and speed-up math.hypot() and math.dist() (GH-102734)
Raymond Hettinger
2023-03-15
1
-154/+139
*
gh-101678: Merge math_1_to_whatever() and math_1() (#101730)
Sergey B Kirpichev
2023-02-09
1
-10/+2
*
gh-101678: refactor the math module to use special functions from c11 (GH-101...
Sergey B Kirpichev
2023-02-09
1
-182/+5
*
Revert "gh-89381: Fix invalid signatures of math/cmath.log (#101404)" (#101580)
Mark Dickinson
2023-02-05
1
-6/+8
*
GH-100485: Create an alternative code path when an accurate fma() implementat...
Raymond Hettinger
2023-02-04
1
-0/+43
*
gh-89381: Fix invalid signatures of math/cmath.log (#101404)
Sergey B Kirpichev
2023-01-29
1
-8/+6
*
GH-100485: Add extended accuracy test. Switch to faster fma() based variant...
Raymond Hettinger
2023-01-28
1
-36/+17
*
Speed-up and improve accuracy with Rump Algorithms (3.1) and (5.10) (GH-101366)
Raymond Hettinger
2023-01-27
1
-21/+16
*
Sumprod(): Update citation. Reorder functions. Add final twosum() call. Impro...
Raymond Hettinger
2023-01-22
1
-38/+21
*
gh-100873: Fix "‘lo’ may be used uninitialized in this function" warning ...
Nikita Sobolev
2023-01-09
1
-1/+1
*
gh-100833: Remove 'volatile' qualifiers in fsum algorithm (#100845)
Mark Dickinson
2023-01-08
1
-22/+22
*
GH-100485: Tweaks to sumprod() (GH-100857)
Raymond Hettinger
2023-01-08
1
-25/+34
*
GH-100485: Convert from Fast2Sum to 2Sum (GH-100836)
Raymond Hettinger
2023-01-08
1
-13/+16
*
GH-100485: Add math.sumprod() (GH-100677)
Raymond Hettinger
2023-01-07
1
-0/+325
*
gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)
Victor Stinner
2022-11-23
1
-6/+3
*
gh-99537: Use Py_SETREF() function in C code (#99656)
Victor Stinner
2022-11-22
1
-4/+2
*
gh-99300: Use Py_NewRef() in Modules/ directory (#99469)
Victor Stinner
2022-11-14
1
-4/+2
*
GH-98897: fix memory leak if `math.dist` raises exception (GH-98898)
Kumar Aditya
2022-11-01
1
-3/+3
[next]