Staging
v0.8.1
https://github.com/python/cpython
Revision 7f93f93fa68f54c1bc128d58fa17536245396de3 authored by Julien Palard on 26 November 2018, 17:16:13 UTC, committed by Miss Islington (bot) on 26 November 2018, 17:16:13 UTC


(cherry picked from commit 5719f275b7153a00a800f5481271a6fc26659c65)

Co-authored-by: Mathieu Dupuy <deronnax@users.noreply.github.com>





https://bugs.python.org/issue35255
1 parent fc4a44b
Raw File
Tip revision: 7f93f93fa68f54c1bc128d58fa17536245396de3 authored by Julien Palard on 26 November 2018, 17:16:13 UTC
[3.6] bpo-35255: Doc: Delete now useless Windows FAQ section (GH-10557) (GH-10725)
Tip revision: 7f93f93
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);
PyAPI_FUNC(double) _Py_dg_stdnan(int sign);
PyAPI_FUNC(double) _Py_dg_infinity(int sign);


#ifdef __cplusplus
}
#endif
#endif
#endif
back to top