pyparsing 2.4.6-1 source package in Ubuntu
Changelog
pyparsing (2.4.6-1) unstable; urgency=medium * Team upload. [ Drew Parsons ] * add unitTests to debian/tests [ Debian Janitor ] * Set upstream metadata fields: Repository, Repository-Browse. [ Håvard Flaget Aasen ] * New upstream version 2.4.6 * Set upstream metadata fields: Bug-Database, Bug-Submit and append .git to Repository * Update Standards-Version to 4.5.0 * Add sphinxdoc:Depends to doc package * Remove obsolete files d/README.source, d/new-upstream and cleaned d/watch since source no longer gets repacked * Add Rules-Requires-Root: no -- Håvard Flaget Aasen <email address hidden> Fri, 24 Jan 2020 23:07:06 +0100
Upload details
- Uploaded by:
- Debian Python Modules Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Python Modules Team
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Focal | release | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
pyparsing_2.4.6-1.dsc | 2.4 KiB | 53f7f9804c8d98bce52495ee7b744f5224eec54639fb2f6422a5d9ffec14eccd |
pyparsing_2.4.6.orig.tar.gz | 634.0 KiB | 4c830582a84fb022400b85429791bc551f1f4871c33f23e44f353119e92f969f |
pyparsing_2.4.6-1.debian.tar.xz | 7.6 KiB | 83ea6c57f8c1057b08e4c2e3b637017ec9f27da5c7216d75c6a0aa5dea242fba |
Available diffs
- diff from 2.4.2-1 to 2.4.6-1 (12.0 KiB)
No changes file available.
Binary packages built by this source
- pypy-pyparsing: alternative to creating and executing simple grammars - pypy
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 PyPy version of python-pyparsing.
- python-pyparsing: No summary available for python-pyparsing in ubuntu groovy.
No description available for python-pyparsing in ubuntu groovy.
- 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.