Staging
v0.5.1
https://github.com/python/cpython
Revision 1cb0cb2fcdc83a6caa871104a622d1217ca034a3 authored by R David Murray on 27 February 2013, 13:57:09 UTC, committed by R David Murray on 27 February 2013, 13:57:09 UTC
1 parent 5f79409
Raw File
Tip revision: 1cb0cb2fcdc83a6caa871104a622d1217ca034a3 authored by R David Murray on 27 February 2013, 13:57:09 UTC
#17296: backport fix for issue 1692335, naive exception pickling.
Tip revision: 1cb0cb2
dtoa.h
#ifndef Py_LIMITED_API
#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
#endif
back to top