Staging
v0.5.1
https://github.com/python/cpython
Revision e6d4c5bab8d18e32bba6482da1b603b35f2fe254 authored by Antoine Pitrou on 23 January 2011, 17:12:25 UTC, committed by Antoine Pitrou on 23 January 2011, 17:12:25 UTC
1 parent 0929b1f
Raw File
Tip revision: e6d4c5bab8d18e32bba6482da1b603b35f2fe254 authored by Antoine Pitrou on 23 January 2011, 17:12:25 UTC
Issue #10987: Fix the recursion limit handling in the _pickle module.
Tip revision: e6d4c5b
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