6e545e41f1190c70462419d163390c291ee1ec55,sumy/algorithms/_luhn.py,LuhnMethod,stop_words,#LuhnMethod#Any#,21
Before Change
@stop_words.setter
def stop_words(self, words):
self._stop_words = frozenset(to_unicode(w).lower() for w in words)
def __call__(self, sentences_count):
words = self._get_significant_words(self._document.words)
After Change
@stop_words.setter
def stop_words(self, words):
self._stop_words = frozenset(map(self.normalize_word, words))
def __call__(self, sentences_count):
words = self._get_significant_words(self._document.words)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: miso-belica/sumy
Commit Name: 6e545e41f1190c70462419d163390c291ee1ec55
Time: 2013-02-28
Author: miso.belica@gmail.com
File Name: sumy/algorithms/_luhn.py
Class Name: LuhnMethod
Method Name: stop_words
Project Name: streamlit/streamlit
Commit Name: 44fecf8c0da1a3b5661762308feab0ce30793ae4
Time: 2020-10-22
Author: tconkling@gmail.com
File Name: lib/streamlit/delta_generator.py
Class Name: DeltaGenerator
Method Name: _block
Project Name: biotite-dev/biotite
Commit Name: 6e5850a6563671394a570a427298af9c4f3c2621
Time: 2018-11-22
Author: patrick.kunzm@gmail.com
File Name: src/biotite/sequence/annotation.py
Class Name: Feature
Method Name: __init__