For example:
path = %(base)s\site-packages base = C:\Python24\lib
Is equivalent to:
path = C:\Python24\lib\site-packages
The text substitution option must exist in the same section or in the
[DEFAULT]
section.
For example, this works:
[DEFAULT] base = C:\Python24\lib [SECTION1] path = %(base)s\site-packages
But this does not:
[SECTION0] base = C:\Python24\lib [SECTION1] path = %(base)s\site-packages
Nesting is only allowed up to 10 levels deep in order to prevent endless loops.