Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/python2....
File: pystrtod.h
#ifndef Py_STRTOD_H
[0] Fix | Delete
#define Py_STRTOD_H
[1] Fix | Delete
[2] Fix | Delete
#ifdef __cplusplus
[3] Fix | Delete
extern "C" {
[4] Fix | Delete
#endif
[5] Fix | Delete
[6] Fix | Delete
[7] Fix | Delete
PyAPI_FUNC(double) PyOS_ascii_strtod(const char *str, char **ptr);
[8] Fix | Delete
PyAPI_FUNC(double) PyOS_ascii_atof(const char *str);
[9] Fix | Delete
[10] Fix | Delete
/* Deprecated in 2.7 and 3.1. Will disappear in 2.8 (if it exists) and 3.2 */
[11] Fix | Delete
PyAPI_FUNC(char *) PyOS_ascii_formatd(char *buffer, size_t buf_len,
[12] Fix | Delete
const char *format, double d);
[13] Fix | Delete
PyAPI_FUNC(double) PyOS_string_to_double(const char *str,
[14] Fix | Delete
char **endptr,
[15] Fix | Delete
PyObject *overflow_exception);
[16] Fix | Delete
[17] Fix | Delete
/* The caller is responsible for calling PyMem_Free to free the buffer
[18] Fix | Delete
that's is returned. */
[19] Fix | Delete
PyAPI_FUNC(char *) PyOS_double_to_string(double val,
[20] Fix | Delete
char format_code,
[21] Fix | Delete
int precision,
[22] Fix | Delete
int flags,
[23] Fix | Delete
int *type);
[24] Fix | Delete
[25] Fix | Delete
PyAPI_FUNC(double) _Py_parse_inf_or_nan(const char *p, char **endptr);
[26] Fix | Delete
[27] Fix | Delete
[28] Fix | Delete
/* PyOS_double_to_string's "flags" parameter can be set to 0 or more of: */
[29] Fix | Delete
#define Py_DTSF_SIGN 0x01 /* always add the sign */
[30] Fix | Delete
#define Py_DTSF_ADD_DOT_0 0x02 /* if the result is an integer add ".0" */
[31] Fix | Delete
#define Py_DTSF_ALT 0x04 /* "alternate" formatting. it's format_code
[32] Fix | Delete
specific */
[33] Fix | Delete
[34] Fix | Delete
/* PyOS_double_to_string's "type", if non-NULL, will be set to one of: */
[35] Fix | Delete
#define Py_DTST_FINITE 0
[36] Fix | Delete
#define Py_DTST_INFINITE 1
[37] Fix | Delete
#define Py_DTST_NAN 2
[38] Fix | Delete
[39] Fix | Delete
#ifdef __cplusplus
[40] Fix | Delete
}
[41] Fix | Delete
#endif
[42] Fix | Delete
[43] Fix | Delete
#endif /* !Py_STRTOD_H */
[44] Fix | Delete
[45] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function