-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
T: styleWhat do we want Blackened code to look like?What do we want Blackened code to look like?
Description
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.
Jackenmen and felix-hilden
Metadata
Metadata
Assignees
Labels
T: styleWhat do we want Blackened code to look like?What do we want Blackened code to look like?