TextBloB:correct() 方法返回空对象

TextBloB: correct() method returning empty object

我正在尝试使用 TextBlob's spelling correction,但 correct() returns 每次调用都带有一个空对象。 终端调用方法如下:

>>> from textblob import TextBlob
>>> b = TextBlob("I havv goood speling!")
>>> b.correct()
TextBlob("")
>>> print(b.correct())

>>> 

我是 运行 Python 2.7.6 Linux。

最近更新后 TextBlob 中似乎存在错误。这是我更新 TextBlob 包之前 (v 0.9.0) 和之后 (v 0.10.0) 的结果(我使用的是 Python 2.7.10):

结果来自 TextBlob 0.9.0 :)

>>> from textblob import TextBlob, __version__
>>> __version__
'0.9.0'
>>> b = TextBlob('I havv good speling!')
>>> b.correct()
TextBlob("I have good spelling!")

结果来自 TextBlob 0.10.0 :(

>>> from textblob import TextBlob, __version__
>>> __version__
'0.10.0'
>>> b = TextBlob('I havv good speling!')
>>> b.correct()
TextBlob("")



更新:

错误是 now fixed