[code.view]

[top] / python / PyMOTW / ConfigParser / ConfigParser_interpolation_recursion.py

     #!/usr/bin/env python
     # encoding: utf-8
     #
     # Copyright (c) 2010 Doug Hellmann.  All rights reserved.
     #
     """Default handling.
     """
     #end_pymotw_header
     
     import ConfigParser
     
     parser = ConfigParser.SafeConfigParser()
     
     parser.add_section('sect')
     parser.set('sect', 'opt', '%(opt)s')
     
     try:
         print parser.get('sect', 'opt')
     except ConfigParser.InterpolationDepthError, err:
         print 'ERROR:', err
     

[top] / python / PyMOTW / ConfigParser / ConfigParser_interpolation_recursion.py

contact | logmethods.com