Home
last modified time | relevance | path

Searched refs:Py_DTSF_SIGN (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dpystrtod.h31 #define Py_DTSF_SIGN 0x01 /* always add the sign */ macro
/external/python/cpython3/Include/
Dpystrtod.h31 #define Py_DTSF_SIGN 0x01 /* always add the sign */ macro
/external/python/cpython3/Doc/c-api/
Dconversion.rst98 *flags* can be zero or more of the values *Py_DTSF_SIGN*,
101 * *Py_DTSF_SIGN* means to always precede the returned string with a sign
/external/python/cpython2/Doc/c-api/
Dconversion.rst132 *flags* can be zero or more of the values *Py_DTSF_SIGN*,
135 * *Py_DTSF_SIGN* means to always precede the returned string with a sign
/external/python/cpython3/Python/
Dpystrtod.c925 if (flags & Py_DTSF_SIGN && buf[0] != '-') { in PyOS_double_to_string()
1303 flags & Py_DTSF_SIGN, in PyOS_double_to_string()
/external/python/cpython2/Python/
Dpystrtod.c865 if (flags & Py_DTSF_SIGN && buf[0] != '-') { in PyOS_double_to_string()
1244 flags & Py_DTSF_SIGN, in PyOS_double_to_string()
/external/python/cpython3/Objects/
Dcomplexobject.c392 precision, Py_DTSF_SIGN, NULL); in complex_repr()
/external/python/cpython2/Objects/
Dcomplexobject.c405 precision, Py_DTSF_SIGN, NULL); in complex_format()