pyparsing 1.5.2-2ubuntu1 source package in Ubuntu

Changelog

pyparsing (1.5.2-2ubuntu1) precise; urgency=low

  * Switch to use dh_python2. (LP: #910922) Patch taken from Debian
    bug 631404, thanks to Julian Taylor.
 -- Scott Howard <email address hidden>   Mon, 02 Jan 2012 12:58:29 -0500

Upload details

Uploaded by:
Scott Howard
Sponsored by:
Stéphane Graber
Uploaded to:
Precise
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise updates main python
Precise release universe python

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
pyparsing_1.5.2.orig.tar.gz 772.1 KiB 1021fd2cfdf9c3b6ac0191b018c15d591501b77d977baded59d8ef76d375f21c
pyparsing_1.5.2-2ubuntu1.diff.gz 4.4 KiB 3445e1d14612f7611384344af8d10120dfde1c916f36e1d7087fc8b4bd070a4f
pyparsing_1.5.2-2ubuntu1.dsc 2.1 KiB 70c0686d0eed96a69abbe1c5b94d4f2bfc178b179a5fb2c3f3e34c736dc3ccc2

Available diffs

View changes file

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)