pyparsing 3.1.1-1 source package in Ubuntu

Changelog

pyparsing (3.1.1-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 3.1.1
    - Fix Word(min=...) regression (Closes: #1050783)

 -- Timo Röhling <email address hidden>  Thu, 31 Aug 2023 23:46:14 +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
Noble release main python

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyparsing_3.1.1-1.dsc 2.1 KiB 5758f1a5ea08c29c645b13ce2142319cab0ea90aab7cff723c98aa0aa911d9f8
pyparsing_3.1.1.orig.tar.gz 864.1 KiB ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db
pyparsing_3.1.1-1.debian.tar.xz 8.1 KiB c03fc81efe7172766ff0d0bd9559ff6004438961bfc5326fc110e3d0d39d58ed

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.