Closed as not planned
Description
from unicodedata import normalize
normalize("NFC", "\N{LATIN SMALL LETTER DOTLESS I}\N{COMBINING ACUTE ACCENT}").encode("ascii", "namereplace")b'\\N{LATIN SMALL LETTER DOTLESS I}\\N{COMBINING ACUTE ACCENT}'when it should give
b'\\N{LATIN SMALL LETTER I WITH ACUTE}'When providing a regular dotted i, it already works correctly:
normalize("NFC", "i\N{COMBINING ACUTE ACCENT}").encode("ascii", "namereplace")b'\\N{LATIN SMALL LETTER I WITH ACUTE}'