We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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}.
\N
\N{ox}
\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.
The text was updated successfully, but these errors were encountered:
\U
\u
\x
Successfully merging a pull request may close this issue.
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
Desired style
Upper-case is standard for these, I believe. (For example, in the Python docs.)
This is related to issue number 2067.
The text was updated successfully, but these errors were encountered: