pyparsing 3.1.0-1 source package in Ubuntu
Changelog
pyparsing (3.1.0-1) unstable; urgency=medium * Team upload. * New upstream version 3.1.0 * Update d/copyright * Update Build-Depends * Bump Standards-Version to 4.6.2 * Upgrade d/watch to version 4 format -- Timo Röhling <email address hidden> Fri, 30 Jun 2023 23:57:40 +0200
Upload details
- Uploaded by:
- Debian Python Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Python Team
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
pyparsing_3.1.0-1.dsc | 2.1 KiB | 6165c20ef22faa0aa8d5201aec164dba86da2c7288f45f4964bc2cfad7e8d782 |
pyparsing_3.1.0.orig.tar.gz | 861.9 KiB | edb662d6fe322d6e990b1594b5feaeadf806803359e3d4d42f11e295e588f0ea |
pyparsing_3.1.0-1.debian.tar.xz | 8.1 KiB | e603cd501a792cdf46b2cd344998c8424ac972a6ae504bd676c79d41a8da6fed |
Available diffs
- diff from 3.0.9-1 to 3.1.0-1 (544.0 KiB)
No changes file available.
Binary packages built by this source
- python-pyparsing-doc: alternative to creating and executing simple grammars - doc
The parsing module is an alternative approach to creating and
executing simple grammars, vs. the traditional lex/yacc approach, or
the use of regular expressions. The parsing module provides a
library of classes that client code uses to construct the grammar
directly in Python code.
.
Here's an example:
.
from pyparsing import Word, alphas
greet = Word(alphas) + "," + Word(alphas) + "!"
hello = "Hello, World!"
print hello, "->", greet.parseString(hello)
.
This package contains documentation for python-pyparsing.
- python3-pyparsing: alternative to creating and executing simple grammars - Python 3.x
The parsing module is an alternative approach to creating and
executing simple grammars, vs. the traditional lex/yacc approach, or
the use of regular expressions. The parsing module provides a
library of classes that client code uses to construct the grammar
directly in Python code.
.
Here's an example:
.
from pyparsing import Word, alphas
greet = Word(alphas) + "," + Word(alphas) + "!"
hello = "Hello, World!"
print hello, "->", greet.parseString(hello)
.
This package contains the Python 3.x version of python-pyparsing.