pyparsing 2.4.2-1 source package in Ubuntu
Changelog
pyparsing (2.4.2-1) unstable; urgency=medium * Team upload. [ Ondřej Nový ] * Convert git repository from git-dpm to gbp layout * Use debhelper-compat instead of debian/compat. [ Drew Parsons ] * New upstream release. * Standards-Version: 4.4.0 * Build-Depends: debhelper-compat (= 12) - doc-base: places docs under python-pyparsing doc dir * update Homepage to https://github.com/pyparsing/pyparsing/ * mark python-pyparsing-doc as Multi-Arch: foreign * exclude bytecode (pyc,__pycache__) from examples * add debian/tests (autopkgtest) * remove Kevin Coyner <email address hidden> from Uploaders. Thanks for your great work in the past! Closes: #929551. -- Drew Parsons <email address hidden> Tue, 03 Sep 2019 05:08:36 +0800
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 |
---|
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
pyparsing_2.4.2-1.dsc | 2.4 KiB | 0ebb0ffbab7446b635479dde715bcfa8af4e4a2a69611ea388751a3855d4b2e4 |
pyparsing_2.4.2.orig.tar.gz | 627.8 KiB | 6f98a7b9397e206d78cc01df10131398f1c8b8510a2f4d97d9abd82e1aacdd80 |
pyparsing_2.4.2-1.debian.tar.xz | 8.0 KiB | f6d8bad61a0879d5380fe71b807908904ca0f7a26e7e6a117242529e7c499c50 |
Available diffs
- diff from 2.2.0+dfsg1-2 to 2.4.2-1 (677.4 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: alternative to creating and executing simple grammars - Python 2.7
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 2.7 module.
- 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.