cpython icon indicating copy to clipboard operation
cpython copied to clipboard

gh-98836: Extend PyUnicode_FromFormat()

Open serhiy-storchaka opened this issue 3 years ago • 1 comments

  • Support for conversion specifiers o (octal) and X (uppercase hexadecimal).
  • Support for length modifiers j (intmax_t) and t (ptrdiff_t).
  • Length modifiers are now applied to all integer conversions.
  • Support for wchar_t C strings (%ls and %lV).
  • Support for variable width and precision (*).
  • Support for flag - (left alignment).
  • Issue: gh-98836

serhiy-storchaka avatar Oct 29 '22 07:10 serhiy-storchaka

Feel free to ignore my suggestions, the PR LGTM.

vstinner avatar Nov 07 '22 22:11 vstinner