pyparsing 2.0.3+dfsg1-1ubuntu0.1 source package in Ubuntu

Changelog

pyparsing (2.0.3+dfsg1-1ubuntu0.1) xenial; urgency=medium

  * d/patches/use-setuptools.patch: Use setuptools.setup() instead of
    distutils.setup() so an egg-info directory is generated instead of an
    egg-info file.  (LP: #1578761)
  * d/control: update-maintainer

 -- Barry Warsaw <email address hidden>  Fri, 06 May 2016 11:13:26 -0500

Upload details

Uploaded by:
Barry Warsaw
Uploaded to:
Xenial
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyparsing_2.0.3+dfsg1.orig.tar.gz 1.3 MiB 79dacc5cec938d38012e8e99c16f562856cba83c5515f5b80d5b4366afd3efbe
pyparsing_2.0.3+dfsg1-1ubuntu0.1.debian.tar.xz 6.4 KiB 0b20410dc1469f401193ec5e42ca8817b243f3651fe0cd19e1388068d6c60b9c
pyparsing_2.0.3+dfsg1-1ubuntu0.1.dsc 2.4 KiB 11714a4def3b2874f1844145e2658a3fe67bf80fd8feb2a18b172b38bf418a94

View changes file

Binary packages built by this source

python-pyparsing: Python parsing module

 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)

python-pyparsing-doc: Python parsing module, documentation package

 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: Python parsing module, Python3 package

 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 Python3 version of python-pyparsing.