Searched refs:Py_DTSF_ADD_DOT_0 (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Include/ |
D | pystrtod.h | 32 #define Py_DTSF_ADD_DOT_0 0x02 /* if the result is an integer add ".0" */ macro
|
/external/python/cpython3/Include/ |
D | pystrtod.h | 32 #define Py_DTSF_ADD_DOT_0 0x02 /* if the result is an integer add ".0" */ macro
|
/external/python/cpython3/Doc/c-api/ |
D | conversion.rst | 99 *Py_DTSF_ADD_DOT_0*, or *Py_DTSF_ALT*, or-ed together: 104 * *Py_DTSF_ADD_DOT_0* means to ensure that the returned string will not look
|
/external/python/cpython2/Doc/c-api/ |
D | conversion.rst | 133 *Py_DTSF_ADD_DOT_0*, or *Py_DTSF_ALT*, or-ed together: 138 * *Py_DTSF_ADD_DOT_0* means to ensure that the returned string will not look
|
/external/python/cpython2/Objects/ |
D | floatobject.c | 340 Py_DTSF_ADD_DOT_0, NULL); in PyFloat_AsString() 349 Py_DTSF_ADD_DOT_0, NULL); in PyFloat_AsReprString() 362 Py_DTSF_ADD_DOT_0, NULL); in float_print() 365 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in float_print() 379 Py_DTSF_ADD_DOT_0, in float_str_or_repr()
|
/external/python/cpython3/Python/ |
D | pystrtod.c | 914 if (flags & Py_DTSF_ADD_DOT_0) in PyOS_double_to_string() 1304 flags & Py_DTSF_ADD_DOT_0, in PyOS_double_to_string()
|
D | formatter_unicode.c | 1053 flags |= Py_DTSF_ADD_DOT_0; in format_float_internal()
|
/external/python/cpython2/Python/ |
D | pystrtod.c | 854 if (flags & Py_DTSF_ADD_DOT_0) in PyOS_double_to_string() 1245 flags & Py_DTSF_ADD_DOT_0, in PyOS_double_to_string()
|
/external/python/cpython2/Objects/stringlib/ |
D | formatter.h | 977 flags |= Py_DTSF_ADD_DOT_0; in format_float_internal()
|
/external/python/cpython3/Objects/ |
D | floatobject.c | 323 Py_DTSF_ADD_DOT_0, in float_repr()
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 2106 buf = PyOS_double_to_string(x, 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in save_float()
|