(
val: int, format_code: CharLike, precision: int, flags: int, ptype: PointerLike
)
| 2519 | # PyOS_double_to_string |
| 2520 | @staticmethod |
| 2521 | def double_to_string( |
| 2522 | val: int, format_code: CharLike, precision: int, flags: int, ptype: PointerLike |
| 2523 | ) -> StringLike: |
| 2524 | return api_binding_base( |
| 2525 | API_FUNCS["PyOS_double_to_string"], |
| 2526 | val, |
| 2527 | make_char(format_code), |
| 2528 | precision, |
| 2529 | flags, |
| 2530 | ptype, |
| 2531 | ) |
| 2532 | |
| 2533 | # PyOS_getsig |
| 2534 | @staticmethod |
nothing calls this directly
no test coverage detected