Staging
v0.8.1
Revision 58b6b985a0612e52da7a975c7791f89e98c8fd0b authored by Serhiy Storchaka on 12 November 2016, 20:47:16 UTC, committed by Serhiy Storchaka on 12 November 2016, 20:47:16 UTC
parse_constant doesn't get called on 'null', 'true', 'false' since 3.1/2.7.
1 parent fed0883
Raw File
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