python-iniparse 0.5-1 source package in Ubuntu

Changelog

python-iniparse (0.5-1) unstable; urgency=medium

  * Team upload.

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Repository, Repository-
    Browse.
  * Update maintainer email for merge of DPMT and PAPT.
  * Set upstream metadata fields: Bug-Submit.

  [ Boyuan Yang ]
  * New upstream release.
  * debian/control: Bump Standards-Version to 4.6.1.
  * debian/control: Bump debhelper compat to v13.
  * debian/patches: Refresh patches.
    + Drop python3-compat patch (merged).
    + Backport upstream patch for python3.11 compatibility.

 -- Boyuan Yang <email address hidden>  Wed, 08 Jun 2022 22:29:52 -0400

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe python
Lunar release universe python

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-iniparse_0.5-1.dsc 2.0 KiB f8c87e652b4f9d8f79d29e8dfd9f9082694dea6a725d6588c7a710c1a0d8baa2
python-iniparse_0.5.orig.tar.gz 31.8 KiB 3861300307519ee9b87aa8314e610261749b9562ee3fadccfe79e37b9e821109
python-iniparse_0.5-1.debian.tar.xz 9.6 KiB 6b2976bde1df61f956c17ee3d0ac32a335e661e12a51727e64acab9bdd92b2fb

Available diffs

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