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
/
Python
/
pystrtod.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-120026: soft deprecate Py_HUGE_VAL macro (#120027)
Sergey B Kirpichev
2024-11-01
1
-2/+2
*
gh-121040: Use __attribute__((fallthrough)) (#121044)
Victor Stinner
2024-06-27
1
-3/+3
*
gh-119613: Use C99+ functions instead of Py_IS_NAN/INFINITY/FINITE (#119619)
Sergey B Kirpichev
2024-05-29
1
-3/+3
*
gh-108765: Cleanup #include in Python/*.c files (#108977)
Victor Stinner
2023-09-06
1
-1/+2
*
gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)
Sebastian Berg
2023-05-10
1
-40/+1
*
bpo-45995: add "z" format specifer to coerce negative 0 to zero (GH-30049)
John Belmonte
2022-04-11
1
-2/+20
*
bpo-46656: Remove Py_NO_NAN macro (GH-31160)
Victor Stinner
2022-02-25
1
-2/+0
*
bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)
Victor Stinner
2022-02-23
1
-7/+7
*
bpo-45412: Move _Py_SET_53BIT_PRECISION_START to pycore_pymath.h (GH-28882)
Victor Stinner
2021-10-11
1
-0/+1
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-2/+2
*
bpo-35081: Move dtoa.h header to the internal C API (GH-18489)
Victor Stinner
2020-02-12
1
-0/+1
*
bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)
Victor Stinner
2019-11-20
1
-2/+0
*
bpo-27268: Fix incorrect error message on float('') (GH-2745)
Pedro Lacerda
2019-05-17
1
-3/+3
*
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...
Zackery Spytz
2018-12-07
1
-0/+3
*
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
Benjamin Peterson
2018-09-12
1
-2/+2
*
bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)
INADA Naoki
2018-07-14
1
-0/+2
*
Drop confusing commented out code in pystrtod.c (GH-6072)
Siddhesh Poyarekar
2018-03-11
1
-2/+0
*
Fix strncpy warning with gcc 8 (#5840)
Siddhesh Poyarekar
2018-03-06
1
-2/+2
*
Add the const qualifier to "char *" variables that refer to literal strings. ...
Serhiy Storchaka
2017-11-11
1
-1/+2
*
bpo-31338 (#3374)
Barry Warsaw
2017-09-15
1
-3/+3
*
Issue #26331: Implement the parsing part of PEP 515.
Brett Cannon
2016-09-09
1
-0/+66
*
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka
2015-12-25
1
-4/+5
*
Removed duplicated words in in comments and docs.
Serhiy Storchaka
2014-12-01
1
-1/+1
*
Re #18521: remove assignments of variables that are immediately reassigned.
Georg Brandl
2013-10-14
1
-1/+1
*
Issue #9566: pystrtod.c: Fix a compiler warnings on Windows x64
Victor Stinner
2013-06-24
1
-2/+2
*
Issue #14521: Make result of float('nan') and float('-nan') more consistent a...
Mark Dickinson
2012-04-29
1
-0/+39
*
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon
2011-02-22
1
-1/+1
*
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-952/+952
*
Issue #5988: Delete deprecated functions PyOS_ascii_formatd, PyOS_ascii_strto...
Eric Smith
2010-02-22
1
-63/+12
*
Merged revisions 77691,77698,77713-77714 via svnmerge from
Mark Dickinson
2010-01-24
1
-1/+1
*
Move some comments to more appropriate places
Mark Dickinson
2009-10-26
1
-5/+8
*
Refactor to remove duplicated nan/inf parsing code in
Mark Dickinson
2009-05-20
1
-39/+60
*
Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...
Eric Smith
2009-05-05
1
-33/+13
*
Merged revisions 72257 via svnmerge from
Mark Dickinson
2009-05-03
1
-3/+16
*
Issue #5914: Add new C-API function PyOS_string_to_double, to complement
Mark Dickinson
2009-05-03
1
-17/+100
*
Issue #5859: Remove use of fixed-length buffers for float formatting
Mark Dickinson
2009-05-01
1
-25/+69
*
Issue #5864: Fix problem with empty code formatting for floats,
Mark Dickinson
2009-04-29
1
-78/+114
*
Merged revisions 72040 via svnmerge from
Eric Smith
2009-04-27
1
-15/+9
*
Issue #5835: Deprecate PyOS_ascii_formatd.
Eric Smith
2009-04-26
1
-3/+19
*
Merged revisions 71976 via svnmerge from
Mark Dickinson
2009-04-26
1
-2/+2
*
Internal plumbing changes for float parsing:
Mark Dickinson
2009-04-26
1
-30/+57
*
Issue #5816: Simplify code for parsing and printing of complex numbers.
Mark Dickinson
2009-04-23
1
-10/+13
*
Issue 5780: Fix test_float failures for legacy style float repr.
Mark Dickinson
2009-04-17
1
-4/+61
*
Simplify PyOS_double_to_string.
Eric Smith
2009-04-16
1
-33/+31
*
The other half of Issue #1580: use short float repr where possible.
Eric Smith
2009-04-16
1
-56/+540
*
Added ',' thousands grouping to int.__format__. See PEP 378.
Eric Smith
2009-04-03
1
-1/+1
*
Merged revisions 65125 via svnmerge from
Eric Smith
2008-07-19
1
-0/+4
*
Merged revisions 64491 via svnmerge from
Eric Smith
2008-06-24
1
-2/+2
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-1/+1
*
Merged revisions 63078 via svnmerge from
Eric Smith
2008-05-11
1
-45/+4
[next]