Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-Whoosh-2.7.4-lp152.4.3 RPM for noarch

From OpenSuSE Leap 15.2 for noarch

Name: python2-Whoosh Distribution: openSUSE Leap 15.2
Version: 2.7.4 Vendor: openSUSE
Release: lp152.4.3 Build date: Wed May 27 00:49:17 2020
Group: Development/Languages/Python Build host: sheep82
Size: 4229680 Source RPM: python-Whoosh-2.7.4-lp152.4.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/whoosh-community/whoosh/
Summary: Pure-Python full text indexing, search, and spell checking library
Whoosh is a pure-Python indexing and search library. It can be used
to add search functionality to applications and websites. Every part
of how Whoosh works can be extended or replaced to meet specific
needs.

Provides

Requires

License

BSD-2-Clause

Changelog

* Thu Jul 18 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Add patch to fix build with pytest4+ (both in git of upstream):
    * pytest4.patch
    * py2encoding.patch
  - Use fdupes
  - Update URL
  - Make sure py2 tests are run too
* Tue Dec 04 2018 Matej Cepl <mcepl@suse.com>
  - Remove superfluous devel dependency for noarch package
* Mon Jul 10 2017 jengelh@inai.de
  - Ensure neutrality of description.
* Mon Jun 26 2017 tbechtold@suse.com
  - convert to singlespec
  - split -doc package
  - use files.pythonhosted.org as Source url
  - update to 2.7.4:
    * Changed version number to 2.7.0.
    * Added tag 2.7.0 for changeset 8abeb09483b9
    * Results.extend() didn't update the cached length.
    * Fixed VarBytesListColumn and FixedBytesListColumn.
    * Handle an empty queue exception in mpwriter.
    * Merging pull request with local commit.
    * Added test for storing tuples.
    * Remove caching decorator from VarBytesColumn reader.
    * Added test for has_deletions() after an optimization.
    * Try to avoid an UnboundLocalError in the DFA when MultiTerm.matcher() has
      an empty string.
    * Don't try to write a vector if the list of items is empty.
    * Implemented use of score_fn argument to NestedParent.
    * Don't cache query -> bitset, since this somehow prevents the Searcher from
      being collected.
    * Changed README docs link to point to readthedocs.org.
    * Change uses of dump[s]() to always use protocol 2 instead of -1
      ("use latest protocol") so indices created with Python 3.x are backwards
      compatible.
    * Fix the analyzer in test_vector_unicode() to not lowercase, since this
      makes the test fail on some Python versions.
    * Actually use the split_fn passed by the user. Not sure what happened here.
    * Handle pickled Schema objects that don't have a _subfields attribute.
    * Added fix and tests for calling expand_prefix() with unicode.
    * Fix short code for Swedish in language aliases.
    * Fix missing a consecutive token during highlighting
    * Added estimate_size() methods to SpanNear2.
    * Removed reference to "allfields" keyword argument.
    * Added tests/english-words.10.gz to manifest so it's included in the distribution.
    * Fix warnings in docs build.
    * BufferedWriter should call close() instead of commit() when exiting a context.
    * Reinstate fields.IDLIST's analyzer.
    * Change the version of my fork to be distinct from the base repo.
    * Backed out changeset 96255fc8ff17
    * A typo in `whoosh.fields.KEYWORD` documentation
    * Created new branch romanian-stemmer
    * Skip ISO-8859-1 suffixes on Unicode strings
    * Created new branch spanish-tokenizer
    * Add sanity check for Spanish stemmer
    * Fix sample highlight class
    * Reorder the self._tempstorage.destroy() in SegmentWriter._finish to
      before the lock is released
    * IOError from rmdir is ok if the error was ENOENT
    * Fix reporting of total count in FilterCollector, based on PR #63 by Jannon Frank.
    * Added a test for pickling a schema with a stemming analyzer.
    * Initial unfinished, massive checkin of next-gen architecture.
    * Fix forward-compatibility issue for Python 3.x.
    * Write offsets in VarBytesColumn when there are more than a certain number of rows.
    * Replaced porter stemming algorithm implementation with one based on the one in NLTK.
    * Add IDEA's .cache directory to hgignore.
    * Add IDEA's .cache directory to hgignore.
    * Remove docstring chickenscratch.
    * Fix test accidentally left with assert False at the end.
    * Removed accidentally committed debug prints.
    * Bumped version number for bugfix release.
    * Added tag 2.7.1 for changeset 1bd4b9792eed
    * Merging Bitbucket and local heads.
    * Bumped version number.
    * Added tag 2.7.2 for changeset f6bf123ac708
    * Fixed logic for checking if floats are all whole in encode_weights.
    * Change posting storage so the data from individual posts can be pulled
      out as raw bytes.
    * Fixed error in CommaSeparatedTokenizer.
    * Fixed import error.
    * Minor changes.
    * Updated VarBytesColumn to store offsets as well as lengths.
    * Added context protocol to Index class. Store TOC file name in object.
    * Switched to lighter-weight posting block format.
    * Forgot to check in pfor.py.
    * Reduced size of and references to whoosh.compat, in anticipation of
      using 3to2 for most things.
    * Remove (object) from class definitions, assuming 3to2 will take care of it.
    * Fixed problems from compat refactoring.
    * Fixed problem with calling leaf matcher methods on a MultiMatcher.
    * Don't encode bytes in _kws_to_query.
    * Removed typing annotations to prevent circular import.
    * Cleaned up filename generation/checking, added GC step to saving TOC.
    * Added header checks in terms and postings files.
    * Cleaned up storage cleanup, call it in SegmentWriter.cancel().
    * Added another except clause to catch TypeError, because that's what's raised
      if you try to pickle a function.
    * Fixed error that discarded vector metadata when merging segments.
    * Added ability to specify an analyzer in KEYWORD field constructor.
    * Bumped version number to 2.7.3.
    * Added tag 2.7.3 for changeset f5a1508e93fd
    * Added HyphenFilter to collapse hyphenated words into single tokens.
    * Have OrGroup.factory() return a real class instead of a function.
    * Bumped version number.
* Fri Apr 24 2015 cdenicolo@suse.com
  - license update: BSD-2-Clause
    correct license ist BSD-2-Clause
* Wed Apr 22 2015 mcihar@suse.cz
  - Update to 2.7.0:
    * Removed on-disk word graph implementation of spell checking in favor of much
      simpler and faster FSA implementation over the term file.
    * Many bug fixes.
    * Removed backwards compatibility with indexes created by versions prior to
      2.5. You may need to re-index if you are using an old index that hasn't been
      updated.
    * This is the last 2.x release before a major overhaul that will break backwards
      compatibility.
* Wed Jul 23 2014 mcihar@suse.cz
  - Upgrate to 2.5.7 (no changelog provided)
* Thu Oct 24 2013 speilicke@suse.com
  - Require python-setuptools instead of distribute (upstreams merged)
* Mon Oct 07 2013 mcihar@suse.cz
  - build documentation during build
* Mon Oct 07 2013 mcihar@suse.cz
  - now uses py.test instead of nose for testing

Files

/usr/lib/python2.7/site-packages/Whoosh-2.7.4-py2.7.egg-info
/usr/lib/python2.7/site-packages/Whoosh-2.7.4-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/Whoosh-2.7.4-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/Whoosh-2.7.4-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/Whoosh-2.7.4-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/Whoosh-2.7.4-py2.7.egg-info/zip-safe
/usr/lib/python2.7/site-packages/whoosh
/usr/lib/python2.7/site-packages/whoosh/__init__.py
/usr/lib/python2.7/site-packages/whoosh/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/analysis
/usr/lib/python2.7/site-packages/whoosh/analysis/__init__.py
/usr/lib/python2.7/site-packages/whoosh/analysis/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/analysis/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/analysis/acore.py
/usr/lib/python2.7/site-packages/whoosh/analysis/acore.pyc
/usr/lib/python2.7/site-packages/whoosh/analysis/acore.pyo
/usr/lib/python2.7/site-packages/whoosh/analysis/analyzers.py
/usr/lib/python2.7/site-packages/whoosh/analysis/analyzers.pyc
/usr/lib/python2.7/site-packages/whoosh/analysis/analyzers.pyo
/usr/lib/python2.7/site-packages/whoosh/analysis/filters.py
/usr/lib/python2.7/site-packages/whoosh/analysis/filters.pyc
/usr/lib/python2.7/site-packages/whoosh/analysis/filters.pyo
/usr/lib/python2.7/site-packages/whoosh/analysis/intraword.py
/usr/lib/python2.7/site-packages/whoosh/analysis/intraword.pyc
/usr/lib/python2.7/site-packages/whoosh/analysis/intraword.pyo
/usr/lib/python2.7/site-packages/whoosh/analysis/morph.py
/usr/lib/python2.7/site-packages/whoosh/analysis/morph.pyc
/usr/lib/python2.7/site-packages/whoosh/analysis/morph.pyo
/usr/lib/python2.7/site-packages/whoosh/analysis/ngrams.py
/usr/lib/python2.7/site-packages/whoosh/analysis/ngrams.pyc
/usr/lib/python2.7/site-packages/whoosh/analysis/ngrams.pyo
/usr/lib/python2.7/site-packages/whoosh/analysis/tokenizers.py
/usr/lib/python2.7/site-packages/whoosh/analysis/tokenizers.pyc
/usr/lib/python2.7/site-packages/whoosh/analysis/tokenizers.pyo
/usr/lib/python2.7/site-packages/whoosh/automata
/usr/lib/python2.7/site-packages/whoosh/automata/__init__.py
/usr/lib/python2.7/site-packages/whoosh/automata/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/automata/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/automata/fsa.py
/usr/lib/python2.7/site-packages/whoosh/automata/fsa.pyc
/usr/lib/python2.7/site-packages/whoosh/automata/fsa.pyo
/usr/lib/python2.7/site-packages/whoosh/automata/glob.py
/usr/lib/python2.7/site-packages/whoosh/automata/glob.pyc
/usr/lib/python2.7/site-packages/whoosh/automata/glob.pyo
/usr/lib/python2.7/site-packages/whoosh/automata/lev.py
/usr/lib/python2.7/site-packages/whoosh/automata/lev.pyc
/usr/lib/python2.7/site-packages/whoosh/automata/lev.pyo
/usr/lib/python2.7/site-packages/whoosh/automata/nfa.py
/usr/lib/python2.7/site-packages/whoosh/automata/nfa.pyc
/usr/lib/python2.7/site-packages/whoosh/automata/nfa.pyo
/usr/lib/python2.7/site-packages/whoosh/automata/reg.py
/usr/lib/python2.7/site-packages/whoosh/automata/reg.pyc
/usr/lib/python2.7/site-packages/whoosh/automata/reg.pyo
/usr/lib/python2.7/site-packages/whoosh/classify.py
/usr/lib/python2.7/site-packages/whoosh/classify.pyc
/usr/lib/python2.7/site-packages/whoosh/classify.pyo
/usr/lib/python2.7/site-packages/whoosh/codec
/usr/lib/python2.7/site-packages/whoosh/codec/__init__.py
/usr/lib/python2.7/site-packages/whoosh/codec/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/codec/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/codec/base.py
/usr/lib/python2.7/site-packages/whoosh/codec/base.pyc
/usr/lib/python2.7/site-packages/whoosh/codec/base.pyo
/usr/lib/python2.7/site-packages/whoosh/codec/memory.py
/usr/lib/python2.7/site-packages/whoosh/codec/memory.pyc
/usr/lib/python2.7/site-packages/whoosh/codec/memory.pyo
/usr/lib/python2.7/site-packages/whoosh/codec/plaintext.py
/usr/lib/python2.7/site-packages/whoosh/codec/plaintext.pyc
/usr/lib/python2.7/site-packages/whoosh/codec/plaintext.pyo
/usr/lib/python2.7/site-packages/whoosh/codec/whoosh3.py
/usr/lib/python2.7/site-packages/whoosh/codec/whoosh3.pyc
/usr/lib/python2.7/site-packages/whoosh/codec/whoosh3.pyo
/usr/lib/python2.7/site-packages/whoosh/collectors.py
/usr/lib/python2.7/site-packages/whoosh/collectors.pyc
/usr/lib/python2.7/site-packages/whoosh/collectors.pyo
/usr/lib/python2.7/site-packages/whoosh/columns.py
/usr/lib/python2.7/site-packages/whoosh/columns.pyc
/usr/lib/python2.7/site-packages/whoosh/columns.pyo
/usr/lib/python2.7/site-packages/whoosh/compat.py
/usr/lib/python2.7/site-packages/whoosh/compat.pyc
/usr/lib/python2.7/site-packages/whoosh/compat.pyo
/usr/lib/python2.7/site-packages/whoosh/externalsort.py
/usr/lib/python2.7/site-packages/whoosh/externalsort.pyc
/usr/lib/python2.7/site-packages/whoosh/externalsort.pyo
/usr/lib/python2.7/site-packages/whoosh/fields.py
/usr/lib/python2.7/site-packages/whoosh/fields.pyc
/usr/lib/python2.7/site-packages/whoosh/fields.pyo
/usr/lib/python2.7/site-packages/whoosh/filedb
/usr/lib/python2.7/site-packages/whoosh/filedb/__init__.py
/usr/lib/python2.7/site-packages/whoosh/filedb/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/filedb/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/filedb/compound.py
/usr/lib/python2.7/site-packages/whoosh/filedb/compound.pyc
/usr/lib/python2.7/site-packages/whoosh/filedb/compound.pyo
/usr/lib/python2.7/site-packages/whoosh/filedb/filestore.py
/usr/lib/python2.7/site-packages/whoosh/filedb/filestore.pyc
/usr/lib/python2.7/site-packages/whoosh/filedb/filestore.pyo
/usr/lib/python2.7/site-packages/whoosh/filedb/filetables.py
/usr/lib/python2.7/site-packages/whoosh/filedb/filetables.pyc
/usr/lib/python2.7/site-packages/whoosh/filedb/filetables.pyo
/usr/lib/python2.7/site-packages/whoosh/filedb/gae.py
/usr/lib/python2.7/site-packages/whoosh/filedb/gae.pyc
/usr/lib/python2.7/site-packages/whoosh/filedb/gae.pyo
/usr/lib/python2.7/site-packages/whoosh/filedb/structfile.py
/usr/lib/python2.7/site-packages/whoosh/filedb/structfile.pyc
/usr/lib/python2.7/site-packages/whoosh/filedb/structfile.pyo
/usr/lib/python2.7/site-packages/whoosh/formats.py
/usr/lib/python2.7/site-packages/whoosh/formats.pyc
/usr/lib/python2.7/site-packages/whoosh/formats.pyo
/usr/lib/python2.7/site-packages/whoosh/highlight.py
/usr/lib/python2.7/site-packages/whoosh/highlight.pyc
/usr/lib/python2.7/site-packages/whoosh/highlight.pyo
/usr/lib/python2.7/site-packages/whoosh/idsets.py
/usr/lib/python2.7/site-packages/whoosh/idsets.pyc
/usr/lib/python2.7/site-packages/whoosh/idsets.pyo
/usr/lib/python2.7/site-packages/whoosh/index.py
/usr/lib/python2.7/site-packages/whoosh/index.pyc
/usr/lib/python2.7/site-packages/whoosh/index.pyo
/usr/lib/python2.7/site-packages/whoosh/lang
/usr/lib/python2.7/site-packages/whoosh/lang/__init__.py
/usr/lib/python2.7/site-packages/whoosh/lang/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/dmetaphone.py
/usr/lib/python2.7/site-packages/whoosh/lang/dmetaphone.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/dmetaphone.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/isri.py
/usr/lib/python2.7/site-packages/whoosh/lang/isri.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/isri.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/lovins.py
/usr/lib/python2.7/site-packages/whoosh/lang/lovins.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/lovins.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/morph_en.py
/usr/lib/python2.7/site-packages/whoosh/lang/morph_en.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/morph_en.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/paicehusk.py
/usr/lib/python2.7/site-packages/whoosh/lang/paicehusk.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/paicehusk.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/phonetic.py
/usr/lib/python2.7/site-packages/whoosh/lang/phonetic.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/phonetic.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/porter.py
/usr/lib/python2.7/site-packages/whoosh/lang/porter.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/porter.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/porter2.py
/usr/lib/python2.7/site-packages/whoosh/lang/porter2.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/porter2.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/__init__.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/bases.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/bases.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/bases.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/danish.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/danish.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/danish.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/dutch.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/dutch.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/dutch.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/english.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/english.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/english.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/finnish.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/finnish.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/finnish.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/french.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/french.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/french.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/german.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/german.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/german.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/hungarian.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/hungarian.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/hungarian.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/italian.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/italian.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/italian.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/norwegian.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/norwegian.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/norwegian.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/portugese.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/portugese.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/portugese.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/romanian.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/romanian.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/romanian.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/russian.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/russian.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/russian.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/spanish.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/spanish.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/spanish.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/swedish.py
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/swedish.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/snowball/swedish.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/stopwords.py
/usr/lib/python2.7/site-packages/whoosh/lang/stopwords.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/stopwords.pyo
/usr/lib/python2.7/site-packages/whoosh/lang/wordnet.py
/usr/lib/python2.7/site-packages/whoosh/lang/wordnet.pyc
/usr/lib/python2.7/site-packages/whoosh/lang/wordnet.pyo
/usr/lib/python2.7/site-packages/whoosh/legacy.py
/usr/lib/python2.7/site-packages/whoosh/legacy.pyc
/usr/lib/python2.7/site-packages/whoosh/legacy.pyo
/usr/lib/python2.7/site-packages/whoosh/matching
/usr/lib/python2.7/site-packages/whoosh/matching/__init__.py
/usr/lib/python2.7/site-packages/whoosh/matching/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/matching/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/matching/binary.py
/usr/lib/python2.7/site-packages/whoosh/matching/binary.pyc
/usr/lib/python2.7/site-packages/whoosh/matching/binary.pyo
/usr/lib/python2.7/site-packages/whoosh/matching/combo.py
/usr/lib/python2.7/site-packages/whoosh/matching/combo.pyc
/usr/lib/python2.7/site-packages/whoosh/matching/combo.pyo
/usr/lib/python2.7/site-packages/whoosh/matching/mcore.py
/usr/lib/python2.7/site-packages/whoosh/matching/mcore.pyc
/usr/lib/python2.7/site-packages/whoosh/matching/mcore.pyo
/usr/lib/python2.7/site-packages/whoosh/matching/wrappers.py
/usr/lib/python2.7/site-packages/whoosh/matching/wrappers.pyc
/usr/lib/python2.7/site-packages/whoosh/matching/wrappers.pyo
/usr/lib/python2.7/site-packages/whoosh/multiproc.py
/usr/lib/python2.7/site-packages/whoosh/multiproc.pyc
/usr/lib/python2.7/site-packages/whoosh/multiproc.pyo
/usr/lib/python2.7/site-packages/whoosh/qparser
/usr/lib/python2.7/site-packages/whoosh/qparser/__init__.py
/usr/lib/python2.7/site-packages/whoosh/qparser/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/qparser/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/qparser/common.py
/usr/lib/python2.7/site-packages/whoosh/qparser/common.pyc
/usr/lib/python2.7/site-packages/whoosh/qparser/common.pyo
/usr/lib/python2.7/site-packages/whoosh/qparser/dateparse.py
/usr/lib/python2.7/site-packages/whoosh/qparser/dateparse.pyc
/usr/lib/python2.7/site-packages/whoosh/qparser/dateparse.pyo
/usr/lib/python2.7/site-packages/whoosh/qparser/default.py
/usr/lib/python2.7/site-packages/whoosh/qparser/default.pyc
/usr/lib/python2.7/site-packages/whoosh/qparser/default.pyo
/usr/lib/python2.7/site-packages/whoosh/qparser/plugins.py
/usr/lib/python2.7/site-packages/whoosh/qparser/plugins.pyc
/usr/lib/python2.7/site-packages/whoosh/qparser/plugins.pyo
/usr/lib/python2.7/site-packages/whoosh/qparser/syntax.py
/usr/lib/python2.7/site-packages/whoosh/qparser/syntax.pyc
/usr/lib/python2.7/site-packages/whoosh/qparser/syntax.pyo
/usr/lib/python2.7/site-packages/whoosh/qparser/taggers.py
/usr/lib/python2.7/site-packages/whoosh/qparser/taggers.pyc
/usr/lib/python2.7/site-packages/whoosh/qparser/taggers.pyo
/usr/lib/python2.7/site-packages/whoosh/query
/usr/lib/python2.7/site-packages/whoosh/query/__init__.py
/usr/lib/python2.7/site-packages/whoosh/query/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/query/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/query/compound.py
/usr/lib/python2.7/site-packages/whoosh/query/compound.pyc
/usr/lib/python2.7/site-packages/whoosh/query/compound.pyo
/usr/lib/python2.7/site-packages/whoosh/query/nested.py
/usr/lib/python2.7/site-packages/whoosh/query/nested.pyc
/usr/lib/python2.7/site-packages/whoosh/query/nested.pyo
/usr/lib/python2.7/site-packages/whoosh/query/positional.py
/usr/lib/python2.7/site-packages/whoosh/query/positional.pyc
/usr/lib/python2.7/site-packages/whoosh/query/positional.pyo
/usr/lib/python2.7/site-packages/whoosh/query/qcolumns.py
/usr/lib/python2.7/site-packages/whoosh/query/qcolumns.pyc
/usr/lib/python2.7/site-packages/whoosh/query/qcolumns.pyo
/usr/lib/python2.7/site-packages/whoosh/query/qcore.py
/usr/lib/python2.7/site-packages/whoosh/query/qcore.pyc
/usr/lib/python2.7/site-packages/whoosh/query/qcore.pyo
/usr/lib/python2.7/site-packages/whoosh/query/ranges.py
/usr/lib/python2.7/site-packages/whoosh/query/ranges.pyc
/usr/lib/python2.7/site-packages/whoosh/query/ranges.pyo
/usr/lib/python2.7/site-packages/whoosh/query/spans.py
/usr/lib/python2.7/site-packages/whoosh/query/spans.pyc
/usr/lib/python2.7/site-packages/whoosh/query/spans.pyo
/usr/lib/python2.7/site-packages/whoosh/query/terms.py
/usr/lib/python2.7/site-packages/whoosh/query/terms.pyc
/usr/lib/python2.7/site-packages/whoosh/query/terms.pyo
/usr/lib/python2.7/site-packages/whoosh/query/wrappers.py
/usr/lib/python2.7/site-packages/whoosh/query/wrappers.pyc
/usr/lib/python2.7/site-packages/whoosh/query/wrappers.pyo
/usr/lib/python2.7/site-packages/whoosh/reading.py
/usr/lib/python2.7/site-packages/whoosh/reading.pyc
/usr/lib/python2.7/site-packages/whoosh/reading.pyo
/usr/lib/python2.7/site-packages/whoosh/scoring.py
/usr/lib/python2.7/site-packages/whoosh/scoring.pyc
/usr/lib/python2.7/site-packages/whoosh/scoring.pyo
/usr/lib/python2.7/site-packages/whoosh/searching.py
/usr/lib/python2.7/site-packages/whoosh/searching.pyc
/usr/lib/python2.7/site-packages/whoosh/searching.pyo
/usr/lib/python2.7/site-packages/whoosh/sorting.py
/usr/lib/python2.7/site-packages/whoosh/sorting.pyc
/usr/lib/python2.7/site-packages/whoosh/sorting.pyo
/usr/lib/python2.7/site-packages/whoosh/spelling.py
/usr/lib/python2.7/site-packages/whoosh/spelling.pyc
/usr/lib/python2.7/site-packages/whoosh/spelling.pyo
/usr/lib/python2.7/site-packages/whoosh/support
/usr/lib/python2.7/site-packages/whoosh/support/__init__.py
/usr/lib/python2.7/site-packages/whoosh/support/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/support/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/support/base85.py
/usr/lib/python2.7/site-packages/whoosh/support/base85.pyc
/usr/lib/python2.7/site-packages/whoosh/support/base85.pyo
/usr/lib/python2.7/site-packages/whoosh/support/bench.py
/usr/lib/python2.7/site-packages/whoosh/support/bench.pyc
/usr/lib/python2.7/site-packages/whoosh/support/bench.pyo
/usr/lib/python2.7/site-packages/whoosh/support/charset.py
/usr/lib/python2.7/site-packages/whoosh/support/charset.pyc
/usr/lib/python2.7/site-packages/whoosh/support/charset.pyo
/usr/lib/python2.7/site-packages/whoosh/support/levenshtein.py
/usr/lib/python2.7/site-packages/whoosh/support/levenshtein.pyc
/usr/lib/python2.7/site-packages/whoosh/support/levenshtein.pyo
/usr/lib/python2.7/site-packages/whoosh/support/relativedelta.py
/usr/lib/python2.7/site-packages/whoosh/support/relativedelta.pyc
/usr/lib/python2.7/site-packages/whoosh/support/relativedelta.pyo
/usr/lib/python2.7/site-packages/whoosh/support/unicode.py
/usr/lib/python2.7/site-packages/whoosh/support/unicode.pyc
/usr/lib/python2.7/site-packages/whoosh/support/unicode.pyo
/usr/lib/python2.7/site-packages/whoosh/system.py
/usr/lib/python2.7/site-packages/whoosh/system.pyc
/usr/lib/python2.7/site-packages/whoosh/system.pyo
/usr/lib/python2.7/site-packages/whoosh/util
/usr/lib/python2.7/site-packages/whoosh/util/__init__.py
/usr/lib/python2.7/site-packages/whoosh/util/__init__.pyc
/usr/lib/python2.7/site-packages/whoosh/util/__init__.pyo
/usr/lib/python2.7/site-packages/whoosh/util/cache.py
/usr/lib/python2.7/site-packages/whoosh/util/cache.pyc
/usr/lib/python2.7/site-packages/whoosh/util/cache.pyo
/usr/lib/python2.7/site-packages/whoosh/util/filelock.py
/usr/lib/python2.7/site-packages/whoosh/util/filelock.pyc
/usr/lib/python2.7/site-packages/whoosh/util/filelock.pyo
/usr/lib/python2.7/site-packages/whoosh/util/loading.py
/usr/lib/python2.7/site-packages/whoosh/util/loading.pyc
/usr/lib/python2.7/site-packages/whoosh/util/loading.pyo
/usr/lib/python2.7/site-packages/whoosh/util/numeric.py
/usr/lib/python2.7/site-packages/whoosh/util/numeric.pyc
/usr/lib/python2.7/site-packages/whoosh/util/numeric.pyo
/usr/lib/python2.7/site-packages/whoosh/util/numlists.py
/usr/lib/python2.7/site-packages/whoosh/util/numlists.pyc
/usr/lib/python2.7/site-packages/whoosh/util/numlists.pyo
/usr/lib/python2.7/site-packages/whoosh/util/testing.py
/usr/lib/python2.7/site-packages/whoosh/util/testing.pyc
/usr/lib/python2.7/site-packages/whoosh/util/testing.pyo
/usr/lib/python2.7/site-packages/whoosh/util/text.py
/usr/lib/python2.7/site-packages/whoosh/util/text.pyc
/usr/lib/python2.7/site-packages/whoosh/util/text.pyo
/usr/lib/python2.7/site-packages/whoosh/util/times.py
/usr/lib/python2.7/site-packages/whoosh/util/times.pyc
/usr/lib/python2.7/site-packages/whoosh/util/times.pyo
/usr/lib/python2.7/site-packages/whoosh/util/varints.py
/usr/lib/python2.7/site-packages/whoosh/util/varints.pyc
/usr/lib/python2.7/site-packages/whoosh/util/varints.pyo
/usr/lib/python2.7/site-packages/whoosh/util/versions.py
/usr/lib/python2.7/site-packages/whoosh/util/versions.pyc
/usr/lib/python2.7/site-packages/whoosh/util/versions.pyo
/usr/lib/python2.7/site-packages/whoosh/writing.py
/usr/lib/python2.7/site-packages/whoosh/writing.pyc
/usr/lib/python2.7/site-packages/whoosh/writing.pyo
/usr/share/doc/packages/python2-Whoosh
/usr/share/doc/packages/python2-Whoosh/README.txt
/usr/share/licenses/python2-Whoosh
/usr/share/licenses/python2-Whoosh/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 11:46:52 2024