Staging
v0.5.1
https://github.com/python/cpython
Revision 2212ee2bee70fc9b4c76e79cc532f52673e5a13f authored by Victor Stinner on 30 November 2018, 19:45:04 UTC, committed by GitHub on 30 November 2018, 19:45:04 UTC
Fix DeprecationWarning when tests are run using python -3.
1 parent bc9f53f
Raw File
Tip revision: 2212ee2bee70fc9b4c76e79cc532f52673e5a13f authored by Victor Stinner on 30 November 2018, 19:45:04 UTC
Replace 1/0 with 1//0 in tests to avoid Python 3 warns (GH-10833)
Tip revision: 2212ee2
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