pyparsing 1.5.2-2 source package in Ubuntu

Changelog

pyparsing (1.5.2-2) unstable; urgency=low

  * debian/rules
    - use globbing to remove pyparsing_py3.py (working around cdbs that installs
      libs into /usr/lib/python2.6/site-packages/); thanks to Jakub Wilk for the
      report; Closes: #571505
  * debian/README.source
    - added (as required by Policy >= 3.8.0)
    - bump Standards-Version to 3.8.4 (no changes needed)
    - b-d only on python (not on python-dev) since building only arch:all pkgs
 -- Bhavani Shankar <email address hidden>   Tue,  08 Jun 2010 22:10:47 +0100

Upload details

Uploaded by:
Bhavani Shankar
Uploaded to:
Maverick
Original maintainer:
Kevin Coyner
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Maverick: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
pyparsing_1.5.2.orig.tar.gz 772.1 KiB 1021fd2cfdf9c3b6ac0191b018c15d591501b77d977baded59d8ef76d375f21c
pyparsing_1.5.2-2.diff.gz 4.3 KiB d15776fc2c9233a8a8460fd8083437f33401bb36fc716cc72ed8d681a197781b
pyparsing_1.5.2-2.dsc 1.4 KiB a92943fbb589512f3c32ac29795ae9ea8996c8b76eb746338270a8522bac4d7f

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)