pyparsing 2.4.6-ok1 source package in openKylin
Changelog
pyparsing (2.4.6-ok1) yangtze; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Mon, 25 Apr 2022 22:03:04 +0800
pyparsing (2.4.6-ok1) yangtze; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Mon, 25 Apr 2022 22:03:04 +0800
Series | Published | Component | Section |
---|
File | Size | SHA-256 Checksum |
---|---|---|
pyparsing_2.4.6.orig.tar.gz | 634.0 KiB | 4c830582a84fb022400b85429791bc551f1f4871c33f23e44f353119e92f969f |
pyparsing_2.4.6-ok1.debian.tar.xz | 3.9 KiB | 400890fcd00188a547f7192f576a3effecb9debfcb4abc968b6d5913b80dffe5 |
pyparsing_2.4.6-ok1.dsc | 2.2 KiB | 48fba193f0940161f6dfee22d03467c485f9920cdaf4e4726a758d0b5f24b2b3 |
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.
No description available for python-pyparsing in openkylin yangtze.
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-pyparsing.
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 Python 3.x version of python-pyparsing.