Staging
v0.5.1
https://github.com/python/cpython
Revision e6872eb41710f14d35616b168f21d85c96d26ff7 authored by Gerhard Häring on 12 September 2008, 22:33:22 UTC, committed by Gerhard Häring on 12 September 2008, 22:33:22 UTC
1 parent 6e1afcf
Raw File
Tip revision: e6872eb41710f14d35616b168f21d85c96d26ff7 authored by Gerhard Häring on 12 September 2008, 22:33:22 UTC
Issue #3846: Release GIL during calls to sqlite3_prepare. This improves concurrent access to the same database file from multiple threads/processes.
Tip revision: e6872eb
pystrtod.h
#ifndef Py_STRTOD_H
#define Py_STRTOD_H

#ifdef __cplusplus
extern "C" {
#endif


PyAPI_FUNC(double) PyOS_ascii_strtod(const char *str, char **ptr);
PyAPI_FUNC(double) PyOS_ascii_atof(const char *str);
PyAPI_FUNC(char *) PyOS_ascii_formatd(char *buffer, size_t buf_len,  const char *format, double d);


#ifdef __cplusplus
}
#endif

#endif /* !Py_STRTOD_H */
back to top