python-iniparse 0.4-2.3 source package in Ubuntu

Changelog

python-iniparse (0.4-2.3) unstable; urgency=medium

  * Non-maintainer upload.

  [ Stuart Prescott ]
  * Remove Python 2 module package (Closes: #937834).
  * Update Standards-Version to 4.4.1 (no changes required).
  * Update to debhelper-compat (= 12).
  * Update URLs for upstream.
  * Add autopkgtest test.

  [ Ondřej Nový ]
  * d/control: Remove ancient X-Python-Version field
  * d/control: Deprecating priority extra as per policy 4.0.1
  * d/control: Set Vcs-* to salsa.debian.org

 -- Stuart Prescott <email address hidden>  Sun, 22 Dec 2019 12:44:30 +1100

Upload details

Uploaded by:
Debian Python Modules Team
Uploaded to:
Sid
Original maintainer:
Debian Python Modules Team
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-iniparse_0.4-2.3.dsc 1.8 KiB 1349cf3cf613a1b3f3ec91706efbda32286092f9e4932acfb7799d7417b26279
python-iniparse_0.4.orig.tar.gz 30.5 KiB abc1ee12d2cfb2506109072d6c21e40b6c75a3fe90a9c924327d80bc0d99c054
python-iniparse_0.4-2.3.debian.tar.xz 10.8 KiB b6d76e670161dcd937d9850e0381d3b3e337e8894719e172f1882d47723c9d54

No changes file available.

Binary packages built by this source

python3-iniparse: access and modify configuration data in INI files (Python 3)

 iniparse is a INI parser for Python which is:
 .
  * Compatible with ConfigParser: Backward compatible implementations of
    ConfigParser, RawConfigParser, and SafeConfigParser are included that are
    API-compatible with the Python standard library. They pass all the unit
    tests in Python-2.4.4.
 .
  * Preserves structure of INI files: Order of sections & options, indentation,
    comments, and blank lines are preserved as far as possible when data is
    updated.
 .
  * More convenient: Values can be accessed using dotted notation
    (cfg.user.name), or using container syntax (cfg['user']['name']).
 .
 It is very useful for config files that are updated both by users and by
 programs, since it is very disorienting for a user to have her config file
 completely rearranged whenever a program changes it. iniparse also allows
 making the order of entries in a config file significant, which is desirable
 in applications like image galleries.
 .
 This is a Python 3 version of the package