Closed
Description
Hello,
The wcswidth
function seems to be incorrectly calculating the width of the heart "❤️" ("\u2764\ufe0f") moji. An example:
>>> from wcwidth import wcswidth
>>> wcswidth("❤️")
1
>>> wcswidth("💞")
2
>>> wcswidth("💘")
2
The heart emoji occupies 2 cells and should be returning 2 as per the other examples above.