php IHDR w Q )Ba pHYs sRGB gAMA a IDATxMk\U s&uo,mD )Xw+e?tw.oWp;QHZnw`gaiJ9̟灙a=nl[ ʨ G;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ y H@E7j 1j+OFRg}ܫ;@Ea~ j`u'o> j- $_q?qS XzG'ay

| files >> /var/www/html/img_galeri/2r1asasas/root/usr/lib/python2.6/site-packages/iniparse/ |
| files >> //var/www/html/img_galeri/2r1asasas/root/usr/lib/python2.6/site-packages/iniparse/ini.pyc |
Ic @ s1 d Z d d k Z d d k l Z l Z l Z d d k Z d e f d YZ d e f d YZ d e f d YZ
d
e f d YZ d e f d
YZ d e f d YZ
d e f d YZ d d Z d e i f d YZ d Z d Z d Z d e i f d YZ d S( s Access and/or modify INI files
* Compatiable with ConfigParser
* Preserves order of sections & options
* Preserves comments/blank lines/etc
* More conveninet access to data
Example:
>>> from StringIO import StringIO
>>> sio = StringIO('''# configure foo-application
... [foo]
... bar1 = qualia
... bar2 = 1977
... [foo-ext]
... special = 1''')
>>> cfg = INIConfig(sio)
>>> print cfg.foo.bar1
qualia
>>> print cfg['foo-ext'].special
1
>>> cfg.foo.newopt = 'hi!'
>>> print cfg
# configure foo-application
[foo]
bar1 = qualia
bar2 = 1977
newopt = hi!
[foo-ext]
special = 1
iN( t DEFAULTSECTt ParsingErrort MissingSectionHeaderErrort LineTypec B s5 e Z d Z d d Z d Z d Z d Z RS( c C s' | d j o | i d | _ n d S( Ns
( t Nonet stript line( t selfR ( ( s0 /usr/lib/python2.6/site-packages/iniparse/ini.pyt __init__0 s
c C s&