Mailing List Archive

CVS: python/dist/src/Lib ConfigParser.py
Update of /projects/cvsroot/python/dist/src/Lib
In directory eric:/projects/python/develop/guido/src/Lib

Modified Files:
ConfigParser.py
Log Message:
Patch by Chris Petrilli (not really tested since I don't know this
module myself) to accept an option keyword argument (vars) that is
substituted on top of the defaults that were setup in __init__. The
patch also fixes the problem where you can't have recusive references
inside your configuration file.
CVS: python/dist/src/Lib ConfigParser.py [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Lib
In directory anthem:/projects/python/develop/bwarsaw/pristine/Lib

Modified Files:
ConfigParser.py
Log Message:
Re-format the module docstring and document the new get() argument.
CVS: python/dist/src/Lib ConfigParser.py [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Lib
In directory eric:/projects/python/develop/guido/src/Lib

Modified Files:
ConfigParser.py
Log Message:
From: Mike Orr <mso@oz.net>

In the docstring of ConfigParser.py (Python 1.5.2b1):
read(*filenames) -- read and parse the list of named configuration files

should be:
read(filenames) -- read and parse the list of named configuration files

The method accepts a list, not a bunch of positional arguments.
Which is good, the list is much more convenient.
CVS: python/dist/src/Lib ConfigParser.py [ In reply to ]
Update of /projects/cvsroot/python/dist/src/Lib
In directory eric:/projects/python/develop/guido/src/Lib

Modified Files:
ConfigParser.py
Log Message:
Fix by Chris Petrilli (to his own code) to limit the number of
iterations looking for expansions to 10.