(*args: Format)
| 427 | |
| 428 | |
| 429 | def make_format(*args: Format) -> Iterator[Format]: |
| 430 | for i in args: |
| 431 | if isinstance(i, (VoidPointer, str, bytes)): |
| 432 | yield make_string(i) # type: ignore |
| 433 | continue |
| 434 | |
| 435 | yield i |
| 436 | |
| 437 | |
| 438 | def make_char(char: CharLike) -> bytes: |