pyparsing 3.0.7-ok1 source package in openKylin

Changelog

pyparsing (3.0.7-ok1) yangtze; urgency=medium

  * Build for openkylin.

 -- sufang <email address hidden>  Tue, 06 Sep 2022 09:32:39 +0800

Upload details

Uploaded by:
sufang
Sponsored by:
Cibot
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Yangtze V1.0 release main python
Yangtze V1.0 proposed main python

Downloads

File Size SHA-256 Checksum
pyparsing_3.0.7.orig.tar.gz 926.2 KiB 0efef16237453296b88171f416257143337d0601f6e616e3d98e7fdd2f284620
pyparsing_3.0.7-ok1.debian.tar.xz 7.2 KiB 496a8006b597900b382ccd89607833723f2f5dd46923cf591176d141a5167db3
pyparsing_3.0.7-ok1.dsc 1.9 KiB 713530d234e2fb1c0a7c599c61818beff4b8c7904a83a8bc4b92efeb5aab3f48

Available diffs

View changes file

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.