pyparsing 3.1.2-1 source package in Ubuntu

Changelog

pyparsing (3.1.2-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 3.1.2
  * Properly clean documentation build (Closes: #1048386)

 -- Timo Röhling <email address hidden>  Wed, 17 Apr 2024 16:32:05 +0200

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
Oracular release main python

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyparsing_3.1.2-1.dsc 2.4 KiB 6f9057e7ab47f3bf5e8aa49312932cf7c879aafa54f1c15f237181a9ebb4cb12
pyparsing_3.1.2.orig.tar.gz 868.7 KiB a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad
pyparsing_3.1.2-1.debian.tar.xz 8.1 KiB 4568a839108152e1f2bf52dd9b07e9928d8028353ef9bac43ff8b03a4d0d6ee4

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.