funcparserlib 1.0.0-0.1 source package in Ubuntu
Changelog
funcparserlib (1.0.0-0.1) unstable; urgency=medium * Non-maintainer upload. * New upstream release - Support Python 3 without 2to3. Closes: #997623 * Drop update-egg-info.patch, no longer needed. * Continue to include the renamed file README.md. * d/rules: Remove installation of upstream changelog, upstream no longer ships any changelog. * d/copyright: - Drop Files-Excluded, these files are no longer shipped. - Update the copyright year for upstream. * d/watch - Remove dversionmangle and repacksuffix. -- HÃ¥vard F. Aasen <email address hidden> Mon, 15 Aug 2022 20:47:50 +0200
Upload details
- Uploaded by:
- Kouhei Maeda
- Uploaded to:
- Sid
- Original maintainer:
- Kouhei Maeda
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Kinetic | release | universe | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
funcparserlib_1.0.0-0.1.dsc | 1.7 KiB | a9d8faea3716bf9d9780c245ace97b07236d666e9e91159bf53d3be4ded10c6a |
funcparserlib_1.0.0.orig.tar.gz | 16.9 KiB | 7dd33dd4299fc55cbdbf4b9fdfb3abc54d3b5ed0c694b83fb38e9e3e8ac38b6b |
funcparserlib_1.0.0-0.1.debian.tar.xz | 3.1 KiB | eab813013a94791cca06c481d41c213e4ceb5335d23076fb85183de5824aca0a |
Available diffs
No changes file available.
Binary packages built by this source
- python3-funcparserlib: Recursive descent parsing library for python3
For python3.
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.