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 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
History
Date User Action Args
2010-11-21 14:00:38lukasz.langasetrecipients: + lukasz.langa, fdrake, georg.brandl, eric.araujo, michael.foord
2010-11-21 14:00:38lukasz.langasetmessageid: <1290348038.38.0.741350013949.issue10489@psf.upfronthosting.co.za>
2010-11-21 14:00:34lukasz.langalinkissue10489 messages
2010-11-21 14:00:34lukasz.langacreate