[issue12771] 2to3 -d adds extra whitespace

2021-10-20 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> wont fix stage: test needed -> resolved status: open -> closed superseder: -> Close 2to3 issues and list them here ___ Python tracker _

[issue12771] 2to3 -d adds extra whitespace

2019-03-19 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: PS2 = "... " is defined with a trailing space which is not stripped for empty lines with only PS2 in the doctest. A patch would be to strip the trailing space in PS2 for empty lines and a unittest would be as below. There are no test cases for this

[issue12771] 2to3 -d adds extra whitespace

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue12771] 2to3 -d adds extra whitespace

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a response to this please. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker ___ ___

[issue12771] 2to3 -d adds extra whitespace

2011-11-28 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +benjamin.peterson stage: -> test needed type: -> behavior versions: +Python 3.3 ___ Python tracker ___ _

[issue12771] 2to3 -d adds extra whitespace

2011-08-17 Thread Vlada Peric
New submission from Vlada Peric : When running 2to3 -d on this doctest (from this file[0] in SymPy): >>> class SzUpKet(Ket): ... def _represent_SzOp(self, basis, **options): ... return Matrix([1,0]) ... 2to3 adds an extra space in the last line. This