Message323291
None is an invalid value in the configparser. It only accepts strings. See:
>>> cp = ConfigParser()
>>> cp['asd'] = {'a': None}
Traceback (most recent call last):
...
TypeError: option values must be strings
The DEFAULT section was an omission which is now fixed. You can use a RawConfigParser if you want to put invalid types as option values:
>>> rcp = RawConfigParser()
>>> rcp['asd'] = {'a': None}
>>> |
|
| Date |
User |
Action |
Args |
| 2018-08-08 15:14:16 | lukasz.langa | set | recipients:
+ lukasz.langa, barry, vinay.sajip, ned.deily, Steap, miss-islington |
| 2018-08-08 15:14:16 | lukasz.langa | set | messageid: <[email protected]> |
| 2018-08-08 15:14:16 | lukasz.langa | link | issue33802 messages |
| 2018-08-08 15:14:16 | lukasz.langa | create | |
|