[Python-checkins] cpython (merge 3.3 -> default): Merge #16085: Don't promote shadowing builtins in the configparser example.

r.david.murray python-checkins at python.org
Sat Sep 29 20:44:39 CEST 2012


http://hg.python.org/cpython/rev/1c9b0b37f097
changeset:   79263:1c9b0b37f097
parent:      79260:766159fa5f68
parent:      79262:769247e6edbf
user:        R David Murray <rdmurray at bitdance.com>
date:        Sat Sep 29 14:41:26 2012 -0400
summary:
  Merge #16085: Don't promote shadowing builtins in the configparser example.

files:
  Doc/library/configparser.rst |  14 +++++++-------
  1 files changed, 7 insertions(+), 7 deletions(-)


diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst
--- a/Doc/library/configparser.rst
+++ b/Doc/library/configparser.rst
@@ -770,9 +770,9 @@
    # values using the mapping protocol or ConfigParser's set() does not allow
    # such assignments to take place.
    config.add_section('Section1')
-   config.set('Section1', 'int', '15')
-   config.set('Section1', 'bool', 'true')
-   config.set('Section1', 'float', '3.1415')
+   config.set('Section1', 'an_int', '15')
+   config.set('Section1', 'a_bool', 'true')
+   config.set('Section1', 'a_float', '3.1415')
    config.set('Section1', 'baz', 'fun')
    config.set('Section1', 'bar', 'Python')
    config.set('Section1', 'foo', '%(bar)s is %(baz)s!')
@@ -790,13 +790,13 @@
 
    # getfloat() raises an exception if the value is not a float
    # getint() and getboolean() also do this for their respective types
-   float = config.getfloat('Section1', 'float')
-   int = config.getint('Section1', 'int')
-   print(float + int)
+   a_float = config.getfloat('Section1', 'a_float')
+   an_int = config.getint('Section1', 'an_int')
+   print(a_float + an_int)
 
    # Notice that the next output does not interpolate '%(bar)s' or '%(baz)s'.
    # This is because we are using a RawConfigParser().
-   if config.getboolean('Section1', 'bool'):
+   if config.getboolean('Section1', 'a_bool'):
        print(config.get('Section1', 'foo'))
 
 To get interpolation, use :class:`ConfigParser`::

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list