(fmt)
| 380 | |
| 381 | |
| 382 | def _parse_fmt(fmt): |
| 383 | if fmt.startswith(tuple('<^>')): |
| 384 | align = fmt[0] |
| 385 | width = fmt[1:] |
| 386 | if width.isdigit(): |
| 387 | return int(width), align |
| 388 | elif fmt.isdigit(): |
| 389 | return int(fmt), '<' |
| 390 | return None |
| 391 | |
| 392 | |
| 393 | def _resolve_width(width, fmt, label, default): |
no test coverage detected
searching dependent graphs…