pyparsing 2.0.3+dfsg1-1ubuntu0.2 source package in Ubuntu
Changelog
pyparsing (2.0.3+dfsg1-1ubuntu0.2) xenial-security; urgency=medium * No change rebuild in the security pocket. -- Marc Deslauriers <email address hidden> Fri, 02 Oct 2020 07:27:39 -0400
Upload details
- Uploaded by:
- Marc Deslauriers
- Uploaded to:
- Xenial
- Original maintainer:
- Ubuntu Developers
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Xenial | updates | main | python | |
Xenial | security | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
pyparsing_2.0.3+dfsg1.orig.tar.gz | 1.3 MiB | 79dacc5cec938d38012e8e99c16f562856cba83c5515f5b80d5b4366afd3efbe |
pyparsing_2.0.3+dfsg1-1ubuntu0.2.debian.tar.xz | 6.5 KiB | 95ff8fb1b24e29337c9cd80cc545532fb4c98236fa9d11c0a7f88595efd545df |
pyparsing_2.0.3+dfsg1-1ubuntu0.2.dsc | 2.4 KiB | 00326af4bc79cb9ab33fc3e9d1326e6c98b27eeb4b4c6ff35d1681bfcb71f2c8 |
Available diffs
Binary packages built by this source
- python-pyparsing: Python parsing module
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)
- python-pyparsing-doc: Python parsing module, documentation package
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: Python parsing module, Python3 package
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 Python3 version of python-pyparsing.