summaryrefslogtreecommitdiff
path: root/Python/pystrtod.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-0/+3
* Drop confusing commented out code in pystrtod.c (GH-6072) (GH-9586)Victor Stinner2018-09-261-2/+0
* bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)Miss Islington (bot)2018-07-131-0/+2
* Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka2017-11-111-1/+2
* bpo-31338 (#3374)Barry Warsaw2017-09-141-3/+3
* Issue #26331: Implement the parsing part of PEP 515.Brett Cannon2016-09-091-0/+66
* Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-4/+5
* Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
* Re #18521: remove assignments of variables that are immediately reassigned.Georg Brandl2013-10-141-1/+1
* Issue #9566: pystrtod.c: Fix a compiler warnings on Windows x64Victor Stinner2013-06-241-2/+2
* Issue #14521: Make result of float('nan') and float('-nan') more consistent a...Mark Dickinson2012-04-291-0/+39
* Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-1/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-952/+952
* Issue #5988: Delete deprecated functions PyOS_ascii_formatd, PyOS_ascii_strto...Eric Smith2010-02-221-63/+12
* Merged revisions 77691,77698,77713-77714 via svnmerge fromMark Dickinson2010-01-241-1/+1
* Move some comments to more appropriate placesMark Dickinson2009-10-261-5/+8
* Refactor to remove duplicated nan/inf parsing code inMark Dickinson2009-05-201-39/+60
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-051-33/+13
* Merged revisions 72257 via svnmerge fromMark Dickinson2009-05-031-3/+16
* Issue #5914: Add new C-API function PyOS_string_to_double, to complementMark Dickinson2009-05-031-17/+100
* Issue #5859: Remove use of fixed-length buffers for float formattingMark Dickinson2009-05-011-25/+69
* Issue #5864: Fix problem with empty code formatting for floats,Mark Dickinson2009-04-291-78/+114
* Merged revisions 72040 via svnmerge fromEric Smith2009-04-271-15/+9
* Issue #5835: Deprecate PyOS_ascii_formatd.Eric Smith2009-04-261-3/+19
* Merged revisions 71976 via svnmerge fromMark Dickinson2009-04-261-2/+2
* Internal plumbing changes for float parsing:Mark Dickinson2009-04-261-30/+57
* Issue #5816: Simplify code for parsing and printing of complex numbers.Mark Dickinson2009-04-231-10/+13
* Issue 5780: Fix test_float failures for legacy style float repr.Mark Dickinson2009-04-171-4/+61
* Simplify PyOS_double_to_string.Eric Smith2009-04-161-33/+31
* The other half of Issue #1580: use short float repr where possible.Eric Smith2009-04-161-56/+540
* Added ',' thousands grouping to int.__format__. See PEP 378.Eric Smith2009-04-031-1/+1
* Merged revisions 65125 via svnmerge fromEric Smith2008-07-191-0/+4
* Merged revisions 64491 via svnmerge fromEric Smith2008-06-241-2/+2
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* Merged revisions 63078 via svnmerge fromEric Smith2008-05-111-45/+4
* Merged revisions 62586 via svnmerge fromEric Smith2008-04-301-128/+229
* Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,...Christian Heimes2008-03-181-25/+73
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-221-27/+127
* Merged revisions 59703-59773 via svnmerge fromChristian Heimes2008-01-061-22/+52
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-0/+7
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-0/+7
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Fix icc warnings: strlen() returns size_tNeal Norwitz2006-01-081-3/+2
* Fix compiler warningsNeal Norwitz2005-12-181-2/+2
* Get float() to be more portable across platforms. Disable hex strings.Neal Norwitz2005-12-181-48/+25
* Patch #774665: Make Python LC_NUMERIC agnostic.Martin v. Löwis2004-06-081-0/+258