[nltk] branch master updated (91b18c1 -> 3fb87cd)

Daniel Stender danstender-guest at moszumanska.debian.org
Thu Sep 10 12:23:12 UTC 2015


This is an automated email from the git hooks/post-receive script.

danstender-guest pushed a change to branch master
in repository nltk.

      from  91b18c1   new upstream release
       new  7a1f90c   added deb/source/options
       new  664c4cd   Imported Upstream version 3.0.5
       new  1a07af0   Merge tag 'upstream/3.0.5'
       new  ee0f20a   new upstream release
       new  c3104bb   deleted egg-info
       new  c5143d7   deb/rules: removed override for dh_installdocs
       new  af444a7   deb/control: added six to Depends
       new  3fb87cd   prepare for upload

The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 PKG-INFO                                           |   2 +-
 README.txt                                         |  55 --
 debian/changelog                                   |   9 +
 debian/control                                     |   2 +
 debian/rules                                       |   3 -
 debian/source/options                              |   1 +
 nltk.egg-info/PKG-INFO                             |  33 -
 nltk.egg-info/SOURCES.txt                          | 326 ----------
 nltk.egg-info/not-zip-safe                         |   1 -
 nltk.egg-info/top_level.txt                        |   1 -
 nltk/VERSION                                       |   2 +-
 nltk/align/__init__.py                             |   3 +
 nltk/align/api.py                                  |   5 +-
 nltk/align/bleu_score.py                           |   4 -
 nltk/align/gale_church.py                          |   3 -
 nltk/align/gdfa.py                                 |   4 -
 nltk/align/ibm1.py                                 | 268 ++++++---
 nltk/align/ibm2.py                                 | 395 ++++++------
 nltk/align/ibm3.py                                 | 670 ++++++++++-----------
 nltk/align/ibm4.py                                 | 473 +++++++++++++++
 nltk/align/ibm5.py                                 | 642 ++++++++++++++++++++
 nltk/align/ibm_model.py                            | 526 ++++++++++++++++
 nltk/align/phrase_based.py                         |   4 -
 nltk/classify/positivenaivebayes.py                |   7 -
 nltk/classify/senna.py                             |   3 -
 nltk/cluster/util.py                               |   1 -
 nltk/collocations.py                               |  31 +-
 nltk/compat.py                                     | 159 +++++
 nltk/corpus/__init__.py                            |   2 +
 nltk/corpus/reader/__init__.py                     |   3 +-
 nltk/corpus/reader/bnc.py                          |   2 +-
 nltk/corpus/reader/childes.py                      |  26 +-
 nltk/corpus/reader/sentiwordnet.py                 |   3 -
 nltk/corpus/reader/twitter.py                      | 157 +++++
 nltk/corpus/reader/verbnet.py                      |  12 +
 nltk/corpus/reader/wordnet.py                      |   5 +-
 nltk/decorators.py                                 |   2 -
 nltk/internals.py                                  |  27 +-
 nltk/jsontags.py                                   |  10 +-
 nltk/metrics/segmentation.py                       |   3 -
 nltk/parse/bllip.py                                |   3 -
 nltk/parse/dependencygraph.py                      |  61 +-
 nltk/parse/evaluate.py                             |   3 -
 nltk/parse/malt.py                                 | 505 ++++++++++------
 nltk/parse/stanford.py                             |   3 -
 nltk/parse/transitionparser.py                     |   3 -
 nltk/parse/util.py                                 |  59 ++
 nltk/sem/glue.py                                   |  13 +-
 nltk/stem/__init__.py                              |   3 -
 nltk/stem/api.py                                   |   3 -
 nltk/stem/isri.py                                  |   3 -
 nltk/stem/lancaster.py                             |   3 -
 nltk/stem/porter.py                                |   4 -
 nltk/stem/regexp.py                                |   3 -
 nltk/stem/rslp.py                                  |   3 -
 nltk/stem/snowball.py                              |   3 -
 nltk/stem/wordnet.py                               |   3 -
 nltk/tag/__init__.py                               |   3 -
 nltk/tag/api.py                                    |   3 -
 nltk/tag/brill.py                                  |   3 -
 nltk/tag/brill_trainer.py                          |   9 +-
 nltk/tag/brill_trainer_orig.py                     | 414 -------------
 nltk/tag/crf.py                                    |   3 -
 nltk/tag/hmm.py                                    |   3 -
 nltk/tag/hunpos.py                                 |   3 -
 nltk/tag/mapping.py                                |   3 -
 nltk/tag/senna.py                                  |  45 +-
 nltk/tag/sequential.py                             |  11 +-
 nltk/tag/stanford.py                               |  12 +-
 nltk/tag/tnt.py                                    |   3 -
 nltk/tag/util.py                                   |   3 -
 nltk/tbl/feature.py                                |   3 -
 nltk/tbl/rule.py                                   |   3 -
 nltk/tbl/template.py                               |   3 -
 nltk/test/align.doctest                            |  67 ++-
 nltk/test/bnc.doctest                              |  11 +-
 nltk/test/corpus.doctest                           |  29 +-
 nltk/test/gensim.doctest                           | 251 ++++----
 nltk/test/gluesemantics_malt_fixt.py               |   2 +-
 nltk/test/stem.doctest                             |  11 +-
 .../test/unit/align/__init__.py                    |   0
 nltk/test/unit/align/test_ibm1.py                  |  42 ++
 nltk/test/unit/align/test_ibm2.py                  |  54 ++
 nltk/test/unit/align/test_ibm4.py                  | 126 ++++
 nltk/test/unit/align/test_ibm5.py                  | 166 +++++
 nltk/test/unit/align/test_ibm_model.py             | 270 +++++++++
 nltk/test/unit/test_json2csv_corpus.py             | 187 ++++++
 nltk/test/unit/test_twitter_auth.py                | 187 ++++++
 nltk/tgrep.py                                      |   4 -
 nltk/tokenize/__init__.py                          |   5 +-
 nltk/tokenize/api.py                               |   3 -
 nltk/tokenize/casual.py                            | 357 +++++++++++
 nltk/tokenize/punkt.py                             |   3 -
 nltk/tokenize/regexp.py                            |   3 -
 nltk/tokenize/sexpr.py                             |   3 -
 nltk/tokenize/simple.py                            |   3 -
 nltk/tokenize/stanford.py                          |   7 +-
 nltk/tokenize/texttiling.py                        |   3 -
 nltk/tokenize/treebank.py                          |   3 -
 nltk/tokenize/util.py                              |   3 -
 nltk/tree.py                                       |   3 -
 nltk/treeprettyprinter.py                          |   2 -
 nltk/twitter/__init__.py                           |  25 +
 nltk/twitter/api.py                                | 101 ++++
 nltk/twitter/twitter_demo.py                       | 268 +++++++++
 nltk/twitter/twitterclient.py                      | 506 ++++++++++++++++
 nltk/twitter/util.py                               | 389 ++++++++++++
 nltk/wsd.py                                        |   3 -
 setup.cfg                                          |   2 +-
 setup.py                                           |   1 +
 110 files changed, 6148 insertions(+), 2042 deletions(-)
 delete mode 100644 README.txt
 create mode 100644 debian/source/options
 delete mode 100644 nltk.egg-info/PKG-INFO
 delete mode 100644 nltk.egg-info/SOURCES.txt
 delete mode 100644 nltk.egg-info/not-zip-safe
 delete mode 100644 nltk.egg-info/top_level.txt
 create mode 100644 nltk/align/ibm4.py
 create mode 100644 nltk/align/ibm5.py
 create mode 100644 nltk/align/ibm_model.py
 create mode 100644 nltk/corpus/reader/twitter.py
 delete mode 100644 nltk/tag/brill_trainer_orig.py
 rename nltk.egg-info/dependency_links.txt => nltk/test/unit/align/__init__.py (100%)
 create mode 100644 nltk/test/unit/align/test_ibm1.py
 create mode 100644 nltk/test/unit/align/test_ibm2.py
 create mode 100644 nltk/test/unit/align/test_ibm4.py
 create mode 100644 nltk/test/unit/align/test_ibm5.py
 create mode 100644 nltk/test/unit/align/test_ibm_model.py
 create mode 100644 nltk/test/unit/test_json2csv_corpus.py
 create mode 100644 nltk/test/unit/test_twitter_auth.py
 create mode 100644 nltk/tokenize/casual.py
 create mode 100644 nltk/twitter/__init__.py
 create mode 100644 nltk/twitter/api.py
 create mode 100644 nltk/twitter/twitter_demo.py
 create mode 100644 nltk/twitter/twitterclient.py
 create mode 100644 nltk/twitter/util.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/nltk.git



More information about the debian-science-commits mailing list