http://bugs.python.org/review/14057/diff/4238/14810 File Lib/sysconfig.py (right): http://bugs.python.org/review/14057/diff/4238/14810#newcode120 Lib/sysconfig.py:120: optval = optval.lstrip() do we need to preserve trailing spaces on a value? if not, optval.strip(). http://bugs.python.org/review/14057/diff/4238/14810#newcode124 Lib/sysconfig.py:124: optname = optname.rstrip() you already did this above.
http://bugs.python.org/review/14057/diff/4238/14810 File Lib/sysconfig.py (right): http://bugs.python.org/review/14057/diff/4238/14810#newcode120 Lib/sysconfig.py:120: optval = optval.lstrip() On 2012/03/20 05:13:35, gregory.p.smith wrote: > do we need to preserve trailing spaces on a value? if not, optval.strip(). line.strip() is supposed to have already removed trailing spaces. Am I wrong? http://bugs.python.org/review/14057/diff/4238/14810#newcode124 Lib/sysconfig.py:124: optname = optname.rstrip() On 2012/03/20 05:13:35, gregory.p.smith wrote: > you already did this above. Ah yes, I forgot it in the cleanup.