pyparsing 3.0.7-3 source package in Ubuntu

Changelog

pyparsing (3.0.7-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Update standards version to 4.6.1, no changes needed.

  [ Helmut Grohne ]
  * Mark python3-pyparsing Multi-Arch: foreign. (Closes: #1023363)

 -- Thomas Goirand <email address hidden>  Thu, 03 Nov 2022 08:39:02 +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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyparsing_3.0.7-3.dsc 2.2 KiB 8c38c86f61b2a9b1ee6522674980608a274d1dfaf1401e295064631c97bc3ade
pyparsing_3.0.7.orig.tar.gz 864.0 KiB 18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea
pyparsing_3.0.7-3.debian.tar.xz 8.2 KiB 499ec9a0df48d3d747b9f1deaed9b46af22c1bdca912b895609b52b50ed24eb3

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.