It should work the same way in Pyramid or Pylons, since they both use 
PasteDeploy to parse and interpret the config file. My config looks 
something like this:

[DEFAULT]
x = 1

[app:app1]
use = egg:MyEgg
# this should "inherit" x
# If you want to override the global x, you have to use `set` (which is a 
PasteDeploy thing and is what makes it behave differently from native 
ConfigParser):
set x = my x

[app:app2]
use = egg:AnotherEgg
# this should also inherit x

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/pylons-discuss/-/-ZuRve7xR3MJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en.

Reply via email to