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

python3-funcparserlib-0.3.6+repack-lp152.5.3.1 RPM for noarch

From OpenSuSE Ports Leap 15.2 updates for noarch

Name: python3-funcparserlib Distribution: openSUSE Leap 15.2
Version: 0.3.6+repack Vendor: openSUSE
Release: lp152.5.3.1 Build date: Tue Mar 30 18:32:41 2021
Group: Development/Languages/Python Build host: obs-arm-9
Size: 124578 Source RPM: python-funcparserlib-0.3.6+repack-lp152.5.3.1.src.rpm
Packager: http://bugs.opensuse.org
Url: http://code.google.com/p/funcparserlib/
Summary: Recursive descent parsing library based on functional combinators
Parser combinators are just higher-order functions that take parsers as
their arguments and return them as result values. Parser combinators are:

First-class values. Extremely composable. Tend to make the code quite compact.
Resemble the readable notation of xBNF grammars.

Parsers made with funcparserlib are pure-Python LL(*) parsers. It means that
it's very easy to write them without thinking about look-aheads and all that
hardcore parsing stuff. But the recursive descent parsing is a rather slow
method compared to LL(k) or LR(k) algorithms.

So the primary domain for funcparserlib is parsing little languages or external
DSLs (domain specific languages).

The library itself is very small. Its source code is only 0.5 KLOC, with lots
of comments included. It features the longest parsed prefix error reporting,
as well as a tiny lexer generator for token position tracking.

Provides

Requires

License

MIT

Changelog

* Wed Feb 10 2021 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Include in SLE-15 (bsc#1176785, jsc#ECO-3105, jsc#PM-2352)
* Wed Feb 10 2021 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Repack source tarball with non-free documentation removed
* Wed Apr 19 2017 toddrme2178@gmail.com
  - Source must be https.
* Wed Apr 19 2017 toddrme2178@gmail.com
  - Implement single-spec version.
* Sun Mar 13 2016 dmueller@suse.com
  - add license
* Thu Oct 31 2013 mcihar@suse.cz
  - Initial packaging

Files

/usr/lib/python3.6/site-packages/funcparserlib
/usr/lib/python3.6/site-packages/funcparserlib-0.3.6-py3.6.egg-info
/usr/lib/python3.6/site-packages/funcparserlib-0.3.6-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/funcparserlib-0.3.6-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/funcparserlib-0.3.6-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/funcparserlib-0.3.6-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/funcparserlib/__init__.py
/usr/lib/python3.6/site-packages/funcparserlib/__pycache__
/usr/lib/python3.6/site-packages/funcparserlib/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/__pycache__/lexer.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/__pycache__/lexer.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/__pycache__/parser.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/__pycache__/parser.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/__pycache__/util.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/__pycache__/util.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/lexer.py
/usr/lib/python3.6/site-packages/funcparserlib/parser.py
/usr/lib/python3.6/site-packages/funcparserlib/tests
/usr/lib/python3.6/site-packages/funcparserlib/tests/__init__.py
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/dot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/dot.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/json.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/json.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/test_dot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/test_dot.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/test_json.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/test_json.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/test_parsing.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/__pycache__/test_parsing.cpython-36.pyc
/usr/lib/python3.6/site-packages/funcparserlib/tests/dot.py
/usr/lib/python3.6/site-packages/funcparserlib/tests/json.py
/usr/lib/python3.6/site-packages/funcparserlib/tests/test_dot.py
/usr/lib/python3.6/site-packages/funcparserlib/tests/test_json.py
/usr/lib/python3.6/site-packages/funcparserlib/tests/test_parsing.py
/usr/lib/python3.6/site-packages/funcparserlib/util.py
/usr/share/doc/packages/python3-funcparserlib
/usr/share/doc/packages/python3-funcparserlib/CHANGES
/usr/share/doc/packages/python3-funcparserlib/LICENSE
/usr/share/doc/packages/python3-funcparserlib/README


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:28:18 2024