You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Be warned that Python always applies NFKC normalization to characters. Therefore, two distinct characters may actually produce the same variable name. For example:
>>> ª =1# FEMININE ORDINAL INDICATOR
>>> a # LATIN SMALL LETTER A (i.e., ASCII lowercase 'a')
1
Hypothesmith should deliberately violate this rule, to expose tools which compare identifiers as strings without correctly normalizing them first.
The text was updated successfully, but these errors were encountered:
See this comment on Reddit and this blog post:
Hypothesmith should deliberately violate this rule, to expose tools which compare identifiers as strings without correctly normalizing them first.
The text was updated successfully, but these errors were encountered: