Staging
v0.5.1
https://github.com/python/cpython
Revision d6a14a14838ff2e7bd5f72633b0d9b6f6e12f20e authored by karl ding on 28 May 2019, 19:32:12 UTC, committed by Miss Islington (bot) on 28 May 2019, 19:32:12 UTC


There is an extra "one" in the text description for the constant
socket.CAN_RAW_FD_FRAMES
(cherry picked from commit 1b05aa219041eb1c9dbcb4ec6c1fa5b20f060bf5)
1 parent 95b7706
Raw File
Tip revision: d6a14a14838ff2e7bd5f72633b0d9b6f6e12f20e authored by karl ding on 28 May 2019, 19:32:12 UTC
[3.7] Fix typo in docs for socket.CAN_RAW_FD_FRAMES (GH-13635) (GH-13637)
Tip revision: d6a14a1
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