pyparsing2 2.4.7-ok1 source package in openKylin
Changelog
pyparsing2 (2.4.7-ok1) yangtze; urgency=medium * Build for openkylin. -- sufang <email address hidden> Fri, 04 Nov 2022 15:13:53 +0800
pyparsing2 (2.4.7-ok1) yangtze; urgency=medium * Build for openkylin. -- sufang <email address hidden> Fri, 04 Nov 2022 15:13:53 +0800
Series | Published | Component | Section | |
---|---|---|---|---|
Huanghe V3.0 | proposed | main | python | |
Huanghe V3.0 | release | main | python | |
Nile V2.0 | proposed | main | python | |
Nile V2.0 | release | main | python | |
Yangtze V1.0 | release | main | python | |
Yangtze V1.0 | proposed | main | python |
File | Size | SHA-256 Checksum |
---|---|---|
pyparsing2_2.4.7.orig.tar.gz | 638.3 KiB | 198062e79a5f5171f1ad5c39466b60d707caf9c28caf37c63b2630073e57386a |
pyparsing2_2.4.7-ok1.debian.tar.xz | 6.5 KiB | fd9d130e0603a8856cd06519e82957048dea62287ba571ee8cd7a812f8173251 |
pyparsing2_2.4.7-ok1.dsc | 1.9 KiB | 4a0c0897664d11ebe7fafaad133ef62b383bcb1cfcaa406a29498aa8e9bab1ab |
This is a transitional package for pypy PyParsing v2.x
.
The pypy-pyparsing package has been renamed to reflect its only v 2.x,
when upstream is now v 3.x, incompatible due to v3.x using CPython types
and type hashes.
This is the older version v2.x of pyparsing to support pypy.
.
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.parseStri
.
This package contains the PyPy version of python-pyparsing.
This is the older version v2.x of pyparsing to support pypy.
.
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.parseStri
.
This package contains documentation for python-pyparsing2.