pyparsing 2.2.0+dfsg1-2 source package in Ubuntu

Changelog

pyparsing (2.2.0+dfsg1-2) unstable; urgency=medium

  * Uploading to unstable.

 -- Thomas Goirand <email address hidden>  Sun, 25 Feb 2018 20:32:31 +0000

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 Pocket Published Component Section
Bionic release main python

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyparsing_2.2.0+dfsg1-2.dsc 2.4 KiB fb7dbda8c89bbddf2d96fab4bf770a59f53b08a8f727652556de98e20e1e74ea
pyparsing_2.2.0+dfsg1.orig.tar.gz 1.1 MiB 8cf2bde582aa28b854cb96d225606caae902956136e5050ca62125371b06ef8c
pyparsing_2.2.0+dfsg1-2.debian.tar.xz 7.8 KiB f968a17566c942a919fe7024a15bbbb2f1cce5af9c50e01e57ad9580b1e12591

Available diffs

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 eoan.

No description available for python-pyparsing in ubuntu eoan.

python-pyparsing-doc: No summary available for python-pyparsing-doc in ubuntu eoan.

No description available for python-pyparsing-doc in ubuntu eoan.

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.