[issue11858] configparser.ExtendedInterpolation and section case

2011-04-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 17b4378689e6 by Łukasz Langa in branch '3.2': Added Yuxiao Zeng for finding and resolving #11858. Thanks! http://hg.python.org/cpython/rev/17b4378689e6 -- ___ Python tracker

[issue11858] configparser.ExtendedInterpolation and section case

2011-04-28 Thread Pink
Pink added the comment: Oh, all right :) My name is Yuxiao Zeng. 2011/4/28 Łukasz Langa : > > Łukasz Langa added the comment: > > Pink, please give your name so I can include you in Misc/ACKS. > > -- > > ___ > Python tracker >

[issue11858] configparser.ExtendedInterpolation and section case

2011-04-28 Thread Łukasz Langa
Łukasz Langa added the comment: Pink, please give your name so I can include you in Misc/ACKS. -- ___ Python tracker ___ ___ Python-b

[issue11858] configparser.ExtendedInterpolation and section case

2011-04-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2afaef6cda8a by Łukasz Langa in branch 'default': Merged solution for #11858 from 3.2. http://hg.python.org/cpython/rev/2afaef6cda8a -- ___ Python tracker ___

[issue11858] configparser.ExtendedInterpolation and section case

2011-04-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 57c076ab4bbd by Łukasz Langa in branch '3.2': Closes #11858: configparser.ExtendedInterpolation and section case. http://hg.python.org/cpython/rev/57c076ab4bbd -- nosy: +python-dev resolution: -> fixed stage: test needed -> committed/rejec

[issue11858] configparser.ExtendedInterpolation and section case

2011-04-19 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo stage: -> test needed versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-lis

[issue11858] configparser.ExtendedInterpolation and section case

2011-04-18 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks for the catch. I'll add some tests and push it. -- ___ Python tracker ___ ___ Python-bugs-list

[issue11858] configparser.ExtendedInterpolation and section case

2011-04-18 Thread Łukasz Langa
Changes by Łukasz Langa : -- assignee: -> lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue11858] configparser.ExtendedInterpolation and section case

2011-04-16 Thread Pink
New submission from Pink : configparser.ExtendedInterpolation in Python 3.2 has a bug that it will convert the section name in the interpolation to lowercase, and lead to an exception of NoSectionError if the section name has letters in uppercase. In fact it just cannot pass the test of the se