Jonh Wendell wrote:
> Hi all! I need help with autotools stuff..
>
> My directory structure:
>
> project_name
> src
> main.py
> others.py
> data
> ui.glade
> images.png
> po
> translations.po
>
> I'd like to do something like that:
>
> The files in "src" should be installe
Hi,
I have tried this:
import ConfigParser
fp = file("test.conf","w+")
cp = ConfigParser.ConfigParser()
cp.add_section("Section1")
cp.set("Section1","Value1",12345)
cp.write(fp)
and works fine for me.
--
http://mail.python.org/mailman/listinfo/python-list