Home | History | Annotate | Download | only in Objects

Lines Matching defs:typestr

1661 "float.__getformat__(typestr) -> string\n"
1666 "typestr must be 'double' or 'float'. This function returns whichever of\n"
1668 "format of floating point numbers used by the C type named by typestr.");
1673 char* typestr;
1679 if (!PyArg_ParseTuple(args, "ss:__setformat__", &typestr, &format))
1682 if (strcmp(typestr, "double") == 0) {
1686 else if (strcmp(typestr, "float") == 0) {
1718 "detected platform value", typestr);
1727 "float.__setformat__(typestr, fmt) -> None\n"
1732 "typestr must be 'double' or 'float'. fmt must be one of 'unknown',\n"