Home
last modified time | relevance | path

Searched refs:Py_DTSF_ADD_DOT_0 (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Dpystrtod.h32 #define Py_DTSF_ADD_DOT_0 0x02 /* if the result is an integer add ".0" */ macro
/external/python/cpython3/Include/
Dpystrtod.h32 #define Py_DTSF_ADD_DOT_0 0x02 /* if the result is an integer add ".0" */ macro
/external/python/cpython3/Doc/c-api/
Dconversion.rst99 *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/
Dconversion.rst133 *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/
Dfloatobject.c341 Py_DTSF_ADD_DOT_0, NULL); in PyFloat_AsString()
350 Py_DTSF_ADD_DOT_0, NULL); in PyFloat_AsReprString()
363 Py_DTSF_ADD_DOT_0, NULL); in float_print()
366 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in float_print()
380 Py_DTSF_ADD_DOT_0, in float_str_or_repr()
/external/python/cpython3/Python/
Dpystrtod.c908 if (flags & Py_DTSF_ADD_DOT_0) in PyOS_double_to_string()
1300 flags & Py_DTSF_ADD_DOT_0, in PyOS_double_to_string()
Dformatter_unicode.c1053 flags |= Py_DTSF_ADD_DOT_0; in format_float_internal()
/external/python/cpython2/Python/
Dpystrtod.c854 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/
Dformatter.h977 flags |= Py_DTSF_ADD_DOT_0; in format_float_internal()
/external/python/cpython3/Objects/
Dfloatobject.c319 Py_DTSF_ADD_DOT_0, in float_repr()
/external/python/cpython3/Modules/
D_pickle.c1989 buf = PyOS_double_to_string(x, 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in save_float()