15
0

Accepting request 693820 from home:jayvdb:moban

- Update to v0.4
- Tidy spec
- Activate test suite

OBS-URL: https://build.opensuse.org/request/show/693820
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-inifile?expand=0&rev=1
This commit is contained in:
Tomáš Chvátal
2019-04-15 09:44:44 +00:00
committed by Git OBS Bridge
commit 9f1df8feeb
8 changed files with 145 additions and 0 deletions

7
test.py Normal file
View File

@@ -0,0 +1,7 @@
from inifile import IniFile
i = IniFile('hello.ini')
i['foo.bar'] = 'testing more stuff'
i['foo.mup'] = 'aha!'
print i.get_updated_lines()
i.save()