aboutsummaryrefslogtreecommitdiff
path: root/Python/pystrtod.c
AgeCommit message (Expand)Author
2020-12-01bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner
2020-02-12bpo-35081: Move dtoa.h header to the internal C API (GH-18489)Victor Stinner
2019-11-20bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)Victor Stinner
2019-05-17bpo-27268: Fix incorrect error message on float('') (GH-2745)Pedro Lacerda
2018-12-07bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz
2018-09-12closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)Benjamin Peterson
2018-07-14bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)INADA Naoki
2018-03-11Drop confusing commented out code in pystrtod.c (GH-6072)Siddhesh Poyarekar
2018-03-06Fix strncpy warning with gcc 8 (#5840)Siddhesh Poyarekar
2017-11-11Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka
2017-09-14bpo-31338 (#3374)Barry Warsaw
2016-09-09Issue #26331: Implement the parsing part of PEP 515.Brett Cannon
2015-12-25Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka
2014-12-01Removed duplicated words in in comments and docs.Serhiy Storchaka
2013-10-14Re #18521: remove assignments of variables that are immediately reassigned.Georg Brandl
2013-06-24Issue #9566: pystrtod.c: Fix a compiler warnings on Windows x64Victor Stinner
2012-04-29Issue #14521: Make result of float('nan') and float('-nan') more consistent a...Mark Dickinson
2011-02-22Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2010-02-22Issue #5988: Delete deprecated functions PyOS_ascii_formatd, PyOS_ascii_strto...Eric Smith
2010-01-24Merged revisions 77691,77698,77713-77714 via svnmerge fromMark Dickinson
2009-10-26Move some comments to more appropriate placesMark Dickinson
2009-05-20Refactor to remove duplicated nan/inf parsing code inMark Dickinson
2009-05-05Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith
2009-05-03Merged revisions 72257 via svnmerge fromMark Dickinson
2009-05-03Issue #5914: Add new C-API function PyOS_string_to_double, to complementMark Dickinson
2009-05-01Issue #5859: Remove use of fixed-length buffers for float formattingMark Dickinson
2009-04-29Issue #5864: Fix problem with empty code formatting for floats,Mark Dickinson
2009-04-27Merged revisions 72040 via svnmerge fromEric Smith
2009-04-26Issue #5835: Deprecate PyOS_ascii_formatd.Eric Smith
2009-04-26Merged revisions 71976 via svnmerge fromMark Dickinson
2009-04-26Internal plumbing changes for float parsing:Mark Dickinson
2009-04-23Issue #5816: Simplify code for parsing and printing of complex numbers.Mark Dickinson
2009-04-17Issue 5780: Fix test_float failures for legacy style float repr.Mark Dickinson
2009-04-16Simplify PyOS_double_to_string.Eric Smith
2009-04-16The other half of Issue #1580: use short float repr where possible.Eric Smith
2009-04-03Added ',' thousands grouping to int.__format__. See PEP 378.Eric Smith
2008-07-19Merged revisions 65125 via svnmerge fromEric Smith
2008-06-24Merged revisions 64491 via svnmerge fromEric Smith
2008-05-26Renamed PyString to PyBytesChristian Heimes
2008-05-11Merged revisions 63078 via svnmerge fromEric Smith
2008-04-30Merged revisions 62586 via svnmerge fromEric Smith
2008-03-18Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,...Christian Heimes
2008-02-22Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes
2008-01-06Merged revisions 59703-59773 via svnmerge fromChristian Heimes
2006-08-11Merged revisions 46753-51188 via svnmerge fromThomas Wouters
2006-06-08Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters
2006-05-27Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters
2006-04-21Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters
2006-02-15Merge ssize_t branch.Martin v. Löwis