Closed
Description
I tried using wcwidth to calculate the length of the name for the city of Mumbai in Hindi (बॉम्बे हिंदी)
from wcwidth import wcswidth
wcswidth('बॉम्बे हिंदी')
9
On macOS 10.13.5 using Python 3.6.5, I see a visual width of 5 characters and a calculated width of 9 characters.
On Ubuntu 18.04 using Python 3.6.5, I see a visual width of 9 characters and a calculated width of 9 characters.
Thank you by the way for creating a very useful module!