Message106912
| Author |
Edwin.Pozharski |
| Recipients |
Edwin.Pozharski |
| Date |
2010年06月02日.21:01:36 |
| SpamBayes Score |
0.022310613 |
| Marked as misclassified |
No |
| Message-id |
<1275512498.11.0.636017814706.issue8880@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
set() method of ConfigParser accepts boolean True/False as values at runtime without converting them to strings internally. As a result, getboolean() method reports the following error
File "/usr/lib/python2.6/ConfigParser.py", line 350, in getboolean
if v.lower() not in self._boolean_states:
AttributeError: 'bool' object has no attribute 'lower'
since it expects get() method to return strings. (Same problem occurs if other types are used, int/float, etc)
Altering set() behavior may be not the best thing to do, I'd rather suggest that getboolean() converts the get() output to string.
Of course, the way to avoid this problem is always convert values submitted to set() to strings, but it's a hard-to-catch bug. In my case, I was stuck with problematic configuration when assigning values to wx.CheckBox.GetValue(), which returns boolean. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2010年06月02日 21:01:38 | Edwin.Pozharski | set | recipients:
+ Edwin.Pozharski |
| 2010年06月02日 21:01:38 | Edwin.Pozharski | set | messageid: <1275512498.11.0.636017814706.issue8880@psf.upfronthosting.co.za> |
| 2010年06月02日 21:01:36 | Edwin.Pozharski | link | issue8880 messages |
| 2010年06月02日 21:01:36 | Edwin.Pozharski | create |
|