commit: 958ac398c46bbd6356a774fddbe8b4ec8c5404f4
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue May 19 19:22:30 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Tue Jun 2 04:28:00 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=958ac398
dev-python/nltk: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
.../nltk/files/nltk-3.4.5-corpus-tests.patch | 37 ----------------------
1 file changed, 37 deletions(-)
diff --git a/dev-python/nltk/files/nltk-3.4.5-corpus-tests.patch
b/dev-python/nltk/files/nltk-3.4.5-corpus-tests.patch
deleted file mode 100644
index 0284aec02b9..00000000000
--- a/dev-python/nltk/files/nltk-3.4.5-corpus-tests.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-diff --git a/nltk/test/corpus.doctest b/nltk/test/corpus.doctest
-index 5509fe2fd..0a34c9522 100644
---- a/nltk/test/corpus.doctest
-+++ b/nltk/test/corpus.doctest
-@@ -94,7 +94,7 @@ If the reader methods are called without any arguments, they
will
- typically load all documents in the corpus.
-
- >>> len(inaugural.words())
-- 145735
-+ 149797
-
- If a corpus contains a README file, it can be accessed with a ``readme()``
method:
-
-@@ -387,8 +387,8 @@ examples illustrate the use of the wordlist corpora:
-
- >>> stopwords.fileids() # doctest: +ELLIPSIS
- ['arabic', 'azerbaijani', 'danish', 'dutch', 'english', 'finnish',
'french', ...]
-- >>> stopwords.words('portuguese') # doctest: +ELLIPSIS
-- ['de', 'a', 'o', 'que', 'e', 'do', 'da', 'em', 'um', 'para', ...]
-+ >>> sorted(stopwords.words('portuguese')) # doctest: +ELLIPSIS
-+ ['a', 'ao', 'aos', 'aquela', 'aquelas', 'aquele', 'aqueles', ...]
- >>> names.fileids()
- ['female.txt', 'male.txt']
- >>> names.words('male.txt') # doctest: +ELLIPSIS
-diff --git a/nltk/test/unit/test_wordnet.py b/nltk/test/unit/test_wordnet.py
-index a7b26ac91..a1df3d396 100644
---- a/nltk/test/unit/test_wordnet.py
-+++ b/nltk/test/unit/test_wordnet.py
-@@ -204,7 +204,7 @@ class WordnNetDemo(unittest.TestCase):
- u'preobrat',
- u'preobrat_v_miĊĦljenju'
- ]
-- self.assertEqual(S('about-face.n.02').lemma_names(lang='slv'),
expected)
-+
self.assertEqual(sorted(S('about-face.n.02').lemma_names(lang='slv')),
sorted(expected))
-
- def test_iterable_type_for_all_lemma_names(self):
- # Duck-test for iterables.