pyparsing 3.0.9-1 source package in Ubuntu

Changelog

pyparsing (3.0.9-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 3.0.9
  * Update packaging
  * Use autopkgtest-pkg-pybuild

 -- Timo Röhling <email address hidden>  Wed, 14 Dec 2022 23:08:10 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release main python

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyparsing_3.0.9-1.dsc 2.1 KiB 058fb1ceaa561fecf7d0602458e66ef508096f2d44386043312fb75b234d21db
pyparsing_3.0.9.orig.tar.gz 1.9 MiB 2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb
pyparsing_3.0.9-1.debian.tar.xz 8.1 KiB f8cca4bad12c7b31eb9b3f4a1e3698918343aaf72d566273790c82d42d26ec35

Available diffs

No changes file available.

Binary packages built by this source

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.