MCPcopy Create free account
hub / github.com/ZeroIntensity/pointers.py / double_to_string

Method double_to_string

src/pointers/api_bindings.py:2521–2531  ·  view source on GitHub ↗
(
        val: int, format_code: CharLike, precision: int, flags: int, ptype: PointerLike
    )

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

api_binding_baseFunction · 0.85
make_charFunction · 0.85

Tested by

no test coverage detected