Staging
v0.5.1
https://github.com/python/cpython
Revision 8360b21270f10fbb5a59688d1a9314a07744fbcb authored by Georg Brandl on 09 January 2010, 09:47:11 UTC, committed by Georg Brandl on 09 January 2010, 09:47:11 UTC
1 parent c25417f
Raw File
Tip revision: 8360b21270f10fbb5a59688d1a9314a07744fbcb authored by Georg Brandl on 09 January 2010, 09:47:11 UTC
#7422: make it clear that getargspec() only works on Python functions.
Tip revision: 8360b21
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