Home
last modified time | relevance | path

Searched refs:PyOS_ascii_formatd (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_ascii_formatd.py12 PyOS_ascii_formatd = pythonapi.PyOS_ascii_formatd variable
22 PyOS_ascii_formatd(byref(buf), sizeof(buf), '%+.10f',
49 PyOS_ascii_formatd(byref(buf), sizeof(buf), format,
/external/python/cpython2/Include/
Dpystrtod.h13 PyAPI_FUNC(char *) PyOS_ascii_formatd(char *buffer, size_t buf_len,
/external/python/cpython2/Doc/c-api/
Dconversion.rst106 .. c:function:: char* PyOS_ascii_formatd(char *buffer, size_t buf_len, const char *format, double d)
/external/python/cpython2/Python/
Dpystrtod.c720 PyOS_ascii_formatd(char *buffer, in PyOS_ascii_formatd() function
/external/python/cpython2/PC/os2emx/
Dpython27.def1053 "PyOS_ascii_formatd"
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst59 Modified PyOS_ascii_formatd to use at most 2 digit exponents for exponents
62 PyOS_ascii_formatd understands, so that any alterations it does to the
D2.7a1.rst700 Deprecate PyOS_ascii_formatd and replace it with _PyOS_double_to_string or
/external/python/cpython2/Doc/whatsnew/
D2.4.rst755 * ``PyOS_ascii_formatd(buffer, buf_len, format, d)`` converts a
/external/python/cpython3/Doc/whatsnew/
D2.4.rst755 * ``PyOS_ascii_formatd(buffer, buf_len, format, d)`` converts a
/external/python/cpython3/Misc/
DHISTORY12870 - Issue #5988: Remove deprecated functions PyOS_ascii_formatd,
14878 - Issue #5835: Deprecate PyOS_ascii_formatd.