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
/
Objects
/
floatobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-116714: Handle errors correctly in `PyFloat_GetInfo` (#116715)
Nikita Sobolev
2024-03-13
1
-8/+13
*
gh-111968: Split _Py_dictkeys_freelist out of _Py_dict_freelist (gh-115505)
Donghee Na
2024-02-16
1
-6/+6
*
gh-111968: Rename freelist related struct names to Eric's suggestion (gh-115329)
Donghee Na
2024-02-14
1
-19/+19
*
gh-111968: Refactor _PyXXX_Fini to integrate with _PyObject_ClearFreeLists (g...
Donghee Na
2024-02-10
1
-10/+0
*
gh-111968: Use per-thread freelists for dict in free-threading (gh-114323)
Donghee Na
2024-02-01
1
-0/+4
*
gh-111968: Unify freelist naming schema to Eric's suggestion (gh-114581)
Donghee Na
2024-01-26
1
-2/+2
*
gh-111968: Explicit handling for finalized freelist (gh-113929)
Donghee Na
2024-01-12
1
-4/+0
*
gh-111968: Use per-thread freelists for float in free-threading (gh-113886)
Donghee Na
2024-01-10
1
-27/+20
*
Improve error message for "float modulo by zero" (#111685)
Pavel Ovchinnikov
2023-11-09
1
-1/+1
*
gh-108765: Python.h no longer includes <ctype.h> (#108831)
Victor Stinner
2023-09-03
1
-2/+1
*
gh-106320: Remove private AC converter functions (#108505)
Victor Stinner
2023-08-26
1
-0/+1
*
gh-106320: Remove private _PyObject C API (#107147)
Victor Stinner
2023-07-23
1
-1/+1
*
gh-106320: Create pycore_modsupport.h header file (#106355)
Victor Stinner
2023-07-03
1
-0/+1
*
gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)
Sebastian Berg
2023-05-10
1
-12/+1
*
gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte...
Eric Snow
2023-05-02
1
-5/+4
*
gh-84436: Immortalize in _PyStructSequence_InitBuiltinWithFlags() (gh-104054)
Eric Snow
2023-05-01
1
-2/+2
*
gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)
Eric Snow
2023-04-27
1
-13/+3
*
gh-101825: Clarify that as_integer_ratio() output is always normalized (#101843)
Sergey B Kirpichev
2023-02-27
1
-6/+4
*
gh-99537: Use Py_SETREF() function in C code (#99657)
Victor Stinner
2022-11-22
1
-6/+3
*
gh-81057: Move More Globals in Core Code to _PyRuntimeState (gh-99516)
Eric Snow
2022-11-16
1
-10/+17
*
gh-99300: Use Py_NewRef() in Objects/ directory (#99335)
Victor Stinner
2022-11-10
1
-9/+8
*
gh-95605: Fix `float(s)` error message when `s` contains only whitespace (GH-...
Mark Dickinson
2022-08-10
1
-1/+8
*
gh-94673: Add _PyStaticType_InitBuiltin() (#95152)
Eric Snow
2022-07-25
1
-1/+2
*
Fix missing word in sys.float_info docstring (GH-93489)
Mark Dickinson
2022-06-04
1
-1/+1
*
Add more stats for freelist use and allocations. (GH-92211)
Mark Shannon
2022-05-03
1
-0/+2
*
gh-90667: Add specializations of Py_DECREF when types are known (GH-30872)
Dennis Sweeney
2022-04-19
1
-14/+27
*
bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657)
Victor Stinner
2022-03-11
1
-7/+13
*
bpo-46852: Remove the float.__set_format__() method (GH-31585)
Victor Stinner
2022-02-25
1
-74/+2
*
bpo-46852: Rename float.__set_format__() to float.__setformat__() (GH-31558)
Victor Stinner
2022-02-25
1
-5/+5
*
bpo-46656: Remove Py_NO_NAN macro (GH-31160)
Victor Stinner
2022-02-25
1
-8/+0
*
bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)
Victor Stinner
2022-02-23
1
-8/+8
*
bpo-46417: Use _PyType_CAST() in Objects directory (GH-30764)
Victor Stinner
2022-01-21
1
-1/+1
*
bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)
Victor Stinner
2022-01-21
1
-0/+1
*
bpo-46417: Finalize structseq types at exit (GH-30645)
Victor Stinner
2022-01-21
1
-0/+8
*
Revert "bpo-46131: add fastpath for PyFloat_Check() (GH-30200)" (GH-30208)
Raymond Hettinger
2021-12-19
1
-1/+0
*
bpo-46131: add fastpath for PyFloat_Check() (#30200)
Matti Picus
2021-12-19
1
-0/+1
*
bpo-46008: Make runtime-global object/type lifecycle functions and state cons...
Eric Snow
2021-12-09
1
-5/+19
*
bpo-45522: Allow to disable freelists on build time (GH-29056)
Christian Heimes
2021-10-21
1
-4/+17
*
bpo-35134: Add Include/cpython/floatobject.h (GH-28957)
Victor Stinner
2021-10-14
1
-0/+1
*
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Victor Stinner
2021-10-13
1
-0/+1
*
bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)
Victor Stinner
2021-10-11
1
-1/+2
*
Fix typos in the Objects directory (GH-28766)
Christian Clauss
2021-10-06
1
-1/+1
*
bpo-44954: Fix wrong result in float.fromhex corner case (GH-27834)
Mark Dickinson
2021-08-20
1
-2/+2
*
bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493)
Raymond Hettinger
2021-04-22
1
-1/+1
*
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Victor Stinner
2021-04-02
1
-3/+7
*
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher
2021-02-26
1
-1/+2
*
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner
2021-02-19
1
-5/+5
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-2/+2
*
bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995)
Victor Stinner
2020-10-27
1
-5/+14
*
bpo-41974: Remove complex.__float__, complex.__floordiv__, etc (GH-22593)
Serhiy Storchaka
2020-10-09
1
-1/+1
[next]