This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author BreamoreBoy
Recipients BreamoreBoy, docs@python
Date 2012-09-29.13:43:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348926223.26.0.285259885807.issue16085@psf.upfronthosting.co.za>
In-reply-to
Content
From http://docs.python.org/library/configparser.html#examples

float = config.getfloat('Section1', 'float')
int = config.getint('Section1', 'int')
print float + int

It's not a good idea to have float or int used like this in examples.  Maybe my_float and my_int or sec1_float and sec_int?
History
Date User Action Args
2012-09-29 13:43:43BreamoreBoysetrecipients: + BreamoreBoy, docs@python
2012-09-29 13:43:43BreamoreBoysetmessageid: <1348926223.26.0.285259885807.issue16085@psf.upfronthosting.co.za>
2012-09-29 13:43:43BreamoreBoylinkissue16085 messages
2012-09-29 13:43:42BreamoreBoycreate