Staging
v0.5.1
https://github.com/python/cpython
Revision 3050987d85d7cf8cdd4b3c053e673d13cd8dfb12 authored by Victor Stinner on 05 July 2017, 07:16:47 UTC, committed by GitHub on 05 July 2017, 07:16:47 UTC
* Rename again Lib/test/bisectcmd.py to Lib/test/bisect.py
* regrtest now removes '' and Lib/test/ from sys.path
* Use absolute import in test_bisect
1 parent d0ae4be
Raw File
Tip revision: 3050987d85d7cf8cdd4b3c053e673d13cd8dfb12 authored by Victor Stinner on 05 July 2017, 07:16:47 UTC
bpo-30843: regrtest fixes sys.path, restore test.bisect (#2567)
Tip revision: 3050987
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