Staging
v0.5.1
https://github.com/python/cpython
Revision 53f2f2eb053a8ad76f9147bbee771b615457445a authored by Eric Smith on 23 February 2010, 00:37:54 UTC, committed by Eric Smith on 23 February 2010, 00:37:54 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r78350 | eric.smith | 2010-02-22 19:22:24 -0500 (Mon, 22 Feb 2010) | 9 lines

  Merged revisions 78349 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r78349 | eric.smith | 2010-02-22 19:11:16 -0500 (Mon, 22 Feb 2010) | 1 line

    Issue #6902: Fix problem with built-in types format incorrectly with 0 padding.
  ........
................
1 parent 54e14f2
Raw File
Tip revision: 53f2f2eb053a8ad76f9147bbee771b615457445a authored by Eric Smith on 23 February 2010, 00:37:54 UTC
Merged revisions 78350 via svnmerge from
Tip revision: 53f2f2e
dtoa.h
#ifndef PY_NO_SHORT_FLOAT_REPR
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(double) _Py_dg_strtod(const char *str, char **ptr);
PyAPI_FUNC(char *) _Py_dg_dtoa(double d, int mode, int ndigits,
                        int *decpt, int *sign, char **rve);
PyAPI_FUNC(void) _Py_dg_freedtoa(char *s);


#ifdef __cplusplus
}
#endif
#endif
back to top