You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The is_question and is_exclamation properties in tree.py are broken.
because self[-1] is an instance of Word, and str on Word returns the repr of it.
It should be return len(self) > 0 and self[-1].string == "?"
The
is_questionandis_exclamationproperties in tree.py are broken.because
self[-1]is an instance ofWord, andstronWordreturns thereprof it.It should be
return len(self) > 0 and self[-1].string == "?"