Describe the style change
Black could have an opinion of the correct case for \N unicode escapes. For examples, formatting \N{ox} to \N{OX}.
Examples in the current Black style
# This is not nice. All oxen should look the same.
print("\N{ox}\N{OX}")
Desired style
# Now the oxen will be happier.
print("\N{OX}\N{OX}")
Upper-case is standard for these, I believe. (For example, in the Python docs.)
This is related to issue number 2067.
Describe the style change
Black could have an opinion of the correct case for
\Nunicode escapes. For examples, formatting\N{ox}to\N{OX}.Examples in the current Black style
Desired style
Upper-case is standard for these, I believe. (For example, in the Python docs.)
This is related to issue number 2067.