pyparsing 2.0.1+dfsg1-1 source package in Ubuntu

Changelog

pyparsing (2.0.1+dfsg1-1) unstable; urgency=low


  * New upstream release
  * provide python3-pyparsing again
  * add autopkgtests (Closes: #706317)

 -- Julian Taylor <email address hidden>  Wed, 11 Sep 2013 12:22:36 +0200

Upload details

Uploaded by:
Kevin Coyner
Uploaded to:
Sid
Original maintainer:
Kevin Coyner
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Saucy: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
pyparsing_2.0.1+dfsg1-1.dsc 1.6 KiB 047ebf931678bacc3d56906211d42cec8f1590f1ef22dfb56df8cc36284202b0
pyparsing_2.0.1+dfsg1.orig.tar.gz 1021.0 KiB bd8028fd98cefd6a0ffdff15d697333a130baf6c9e2e7dd2a8589119283eb94f
pyparsing_2.0.1+dfsg1-1.debian.tar.gz 6.4 KiB 112504f46920ebbe0eb0532234ed8e408a642fb620a0745d5c0061ff8e9d23d7

No changes file available.

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.