Saved and restored logging._handlerList at the same time as saving/restoring logging...
[python.git] / Include / pystrtod.h
blob5314f269a1cae3d5feee9d4fe14f26bee5413f47
1 #ifndef Py_STRTOD_H
2 #define Py_STRTOD_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
9 PyAPI_FUNC(double) PyOS_ascii_strtod(const char *str, char **ptr);
10 PyAPI_FUNC(double) PyOS_ascii_atof(const char *str);
11 PyAPI_FUNC(char *) PyOS_ascii_formatd(char *buffer, int buf_len, const char *format, double d);
14 #ifdef __cplusplus
16 #endif
18 #endif /* !Py_STRTOD_H */