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-95605: Fix `float(s)` error message when `s` contains only whitespace (GH-...
Miss Islington (bot)
2022-08-11
1
-1/+8
*
Fix missing word in sys.float_info docstring (GH-93489) (GH-93495)
Miss Islington (bot)
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
*
bpo-41873: Add vectorcall for float() (GH-22432)
Dennis Sweeney
2020-09-29
1
-0/+19
*
bpo-40521: Cleanup code of free lists (GH-21082)
Victor Stinner
2020-06-23
1
-7/+14
*
bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901)
Victor Stinner
2020-06-15
1
-2/+3
*
bpo-40887: Don't use finalized free lists (GH-20700)
Victor Stinner
2020-06-08
1
-3/+16
*
bpo-40521: Make float free list per-interpreter (GH-20636)
Victor Stinner
2020-06-04
1
-26/+29
*
bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...
Serhiy Storchaka
2020-05-28
1
-1/+1
*
bpo-37973: Improve the docstrings of sys.float_info (GH-19218)
Zackery Spytz
2020-05-24
1
-2/+4
*
bpo-37986: Improve perfomance of PyLong_FromDouble() (GH-15611)
Sergey Fedoseev
2020-05-10
1
-21/+1
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
1
-7/+4
*
bpo-35081: Move dtoa.h header to the internal C API (GH-18489)
Victor Stinner
2020-02-12
1
-0/+1
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-1/+1
*
bpo-39573: Add Py_SET_TYPE() function (GH-18394)
Victor Stinner
2020-02-07
1
-1/+1
*
bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392)
Victor Stinner
2020-02-07
1
-3/+3
*
Fix 5-space indentation and trailing whitespace (GH-18311)
Mark Dickinson
2020-02-02
1
-11/+11
*
bpo-39434: Improve float __floordiv__ performance and error message (GH-18147)
Dong-hee Na
2020-01-30
1
-31/+39
*
closes bpo-39415: Remove unused codes from longobject.c complexobject.c float...
Dong-hee Na
2020-01-22
1
-37/+0
*
bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985)
Batuhan Taşkaya
2019-12-15
1
-0/+30
*
bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)
Victor Stinner
2019-11-20
1
-20/+0
*
bpo-38631: Avoid Py_FatalError() in float.__getformat__() (GH-17232)
Victor Stinner
2019-11-18
1
-1/+2
*
bpo-37206: Unrepresentable default values no longer represented as None. (GH-...
Serhiy Storchaka
2019-09-14
1
-3/+3
*
bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)
Raymond Hettinger
2019-09-11
1
-1/+1
*
Make PyXXX_Fini() functions private (GH-15531)
Victor Stinner
2019-08-26
1
-1/+1
[next]