i like ini files so much better than yaml. i realize it is brainstorming at this point, but is there any killer feature of yaml or something?

Consider:

[server:main]
host = 127.0.0.1, ::1
port = 80, 8080

How do you get a list of ports as integers?

server:
        host: [127.0.0.1, ::1]
        port: [80, 8080]

In YAML, lists, integers, and more are automatically handled for you. You can also use simple extensions to the YAML parser to allow multiple-file inclusions, define new datatypes, etc.

        — Alice.


--
You received this message because you are subscribed to the Google Groups 
"pylons-devel" group.
To post to this group, send email to pylons-devel@googlegroups.com.
To unsubscribe from this group, send email to 
pylons-devel+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/pylons-devel?hl=en.

Reply via email to