pyparsing 3.0.7-2 source package in Ubuntu

Changelog

pyparsing (3.0.7-2) unstable; urgency=medium

  * Team upload.
  * Fix build time tests:
    - Fix missing Build-Depends on python3-pytest.
    - Copy files needed for tests into test location using pybuild
      (Closes: #1005470).
  * Fix autopkgtest tests:
    - Run the correct test command (Closes: #1006004).
    - Test against all supported interpreters.
    - Copy files needed for tests into test location.
  * Declare Breaks against old versions of translate-toolkit that are broken
    by new upstream version of pyparsing so they migrate together.

 -- Stuart Prescott <email address hidden>  Thu, 07 Apr 2022 01:23:34 +1000

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

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyparsing_3.0.7-2.dsc 2.2 KiB f30034e424f328eaf65d6b7c182808f9d95808184383af204c4ab7e8982b3831
pyparsing_3.0.7.orig.tar.gz 864.0 KiB 18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea
pyparsing_3.0.7-2.debian.tar.xz 8.2 KiB 9f6ed6b3f9177ad00833777534226a40f9b57e229afc896e5b4d2fc8fe823d2f

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.