python-iniparse 0.4-2.1build1 source package in Ubuntu

Changelog

python-iniparse (0.4-2.1build1) precise; urgency=low

  * Rebuild to drop python2.6 dependencies.
 -- Matthias Klose <email address hidden>   Sat, 31 Dec 2011 02:10:32 +0000

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Precise
Original maintainer:
Ludovico Cavedon
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe python
Precise release main python

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
python-iniparse_0.4.orig.tar.gz 30.5 KiB abc1ee12d2cfb2506109072d6c21e40b6c75a3fe90a9c924327d80bc0d99c054
python-iniparse_0.4-2.1build1.debian.tar.gz 6.7 KiB 7887eba271e7aab417a1ee73606bd15c5755203665e0294ddf5ba77beb5088dc
python-iniparse_0.4-2.1build1.dsc 1.3 KiB f1a8dd654164f9ed154a1c4ba47c7b508dd31156dd1f512691b92a321aedc691

Available diffs

View changes file

Binary packages built by this source

python-iniparse: access and modify configuration data in INI files (Python 2)

 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 2 version of the package