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.c340 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/
Dpystrtod.c914 if (flags & Py_DTSF_ADD_DOT_0) in PyOS_double_to_string()
1304 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.c323 Py_DTSF_ADD_DOT_0, in float_repr()
/external/python/cpython3/Modules/
D_pickle.c2106 buf = PyOS_double_to_string(x, 'r', 0, Py_DTSF_ADD_DOT_0, NULL); in save_float()