Staging
v0.5.1
https://github.com/python/cpython
Revision 99576c04f19d23eb70d525cae7bd59857153369f authored by Gregory P. Smith on 15 March 2012, 01:12:23 UTC, committed by Gregory P. Smith on 15 March 2012, 01:12:23 UTC
using --with-system-expat working when the system expat does not have
salted hash support.
1 parent d0e1a5b
Raw File
Tip revision: 99576c04f19d23eb70d525cae7bd59857153369f authored by Gregory P. Smith on 15 March 2012, 01:12:23 UTC
Fixes Issue 14234: fix for the previous commit, keep compilation when
Tip revision: 99576c0
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