python-iniparse 0.4-2.1 source package in Ubuntu

Changelog

python-iniparse (0.4-2.1) unstable; urgency=low

  * Non-maintainer upload.
  * Rebuild to add Python 2.7 support
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  09 May 2011 11:54:28 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Oneiric
Original maintainer:
Ludovico Cavedon
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Oneiric: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
python-iniparse_0.4.orig.tar.gz 30.5 KiB abc1ee12d2cfb2506109072d6c21e40b6c75a3fe90a9c924327d80bc0d99c054
python-iniparse_0.4-2.1.debian.tar.gz 6.7 KiB a27cfe8568a3f8991ab85fc7776d470e596b82197cd90b4b677b546e826169d3
python-iniparse_0.4-2.1.dsc 1.8 KiB feb3597307b9ea8e58359ee2a13e433a1e2993bfc0fd47ced50f7af6768b145c

Available diffs

View changes file

Binary packages built by this source

python-iniparse: Module to access and modify configuration data in INI files

 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.