mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
ConfigParser:
- ensure that option names in interpolations are handled by self.optionxform in the same way that other references to option names - add tests, documentation (closes SF bug #857881, patch #865455)
This commit is contained in:
parent
beddfcb6d0
commit
bc12b01d83
3 changed files with 24 additions and 5 deletions
|
@ -222,11 +222,11 @@ class TestCaseBase(unittest.TestCase):
|
|||
"with11=%(with10)s\n"
|
||||
"with10=%(with9)s\n"
|
||||
"with9=%(with8)s\n"
|
||||
"with8=%(with7)s\n"
|
||||
"with7=%(with6)s\n"
|
||||
"with8=%(With7)s\n"
|
||||
"with7=%(WITH6)s\n"
|
||||
"with6=%(with5)s\n"
|
||||
"with5=%(with4)s\n"
|
||||
"with4=%(with3)s\n"
|
||||
"With5=%(with4)s\n"
|
||||
"WITH4=%(with3)s\n"
|
||||
"with3=%(with2)s\n"
|
||||
"with2=%(with1)s\n"
|
||||
"with1=with\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue