Message121928
| Author |
lukasz.langa |
| Recipients |
eric.araujo, fdrake, georg.brandl, lukasz.langa, michael.foord |
| Date |
2010年11月21日.14:00:34 |
| SpamBayes Score |
2.1646673e-10 |
| Marked as misclassified |
No |
| Message-id |
<1290348038.38.0.741350013949.issue10489@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Committed in rev 86638. A public API for getting the name of the section from a SectionProxy instance was introduced in 86639. This is useful because you can assing a section proxy to a variable and pass it around:
>>> from configparser import SafeConfigParser
>>> parser = SafeConfigParser()
>>> parser.read_string("""
... [section1]
... value = A
... value2 = B
...
... [section2]
... value = C
... value2 = D
... """)
>>> section1 = parser['section1']
>>> section1['value']
'A'
>>> section1.name
'section1'
>>> section2 = parser['section2']
>>> section2['value']
'C'
>>> section2.name
'section2'
>>> section2.name = 'cannot do that, this attribute is read-only on a SectionProxy'
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: can't set attribute |
|