The snippet below results in an IndexError. It seems to have trouble wrapping the last word: "ch'entrate".
from hyphen.textwrap2 import TextWrapper
import hyphen
h_en = hyphen.Hyphenator('en_US')
wrapper = TextWrapper(width=70, use_hyphenator=h_en)
print(wrapper.fill("Abandon all hope, you who enter here (Lasciate ogni speranza, voi ch'entrate)."))
The snippet below results in an IndexError. It seems to have trouble wrapping the last word: "ch'entrate".