mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 17:31:41 +00:00
updated _emoji_char_class docstring
This commit is contained in:
parent
5342ea3033
commit
10b5727725
@ -16,6 +16,7 @@ def _emoji_char_class():
|
|||||||
|
|
||||||
ranges = []
|
ranges = []
|
||||||
for i, c in enumerate(chardata.CHAR_CLASS_STRING):
|
for i, c in enumerate(chardata.CHAR_CLASS_STRING):
|
||||||
|
# c represents the character class (3 corresponds to emoji)
|
||||||
if c == '3' and i >= 0x2600 and i != 0xfffd:
|
if c == '3' and i >= 0x2600 and i != 0xfffd:
|
||||||
if ranges and i == ranges[-1][1] + 1:
|
if ranges and i == ranges[-1][1] + 1:
|
||||||
ranges[-1][1] = i
|
ranges[-1][1] = i
|
||||||
|
Loading…
Reference in New Issue
Block a user