[issue32536] ast and tokenize disagree about line number

2021-06-18 Thread Arjun
Arjun added the comment: Well actually, it depends on the platform? -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue32536] ast and tokenize disagree about line number

2021-06-18 Thread Arjun
Arjun added the comment: the line numbers are different for me too (MacOS). it seems that tokenize module is off by +1 line -- nosy: +CCLDArjun ___ Python tracker ___

[issue32536] ast and tokenize disagree about line number

2021-06-18 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue32536] ast and tokenize disagree about line number

2018-01-17 Thread Nitish
Nitish added the comment: What should happen ideally? The stray '\r' be treated like a whitespace? -- ___ Python tracker ___

[issue32536] ast and tokenize disagree about line number

2018-01-16 Thread Nitish
Change by Nitish : -- nosy: +nitishch ___ Python tracker ___ ___ Python-bugs-list

[issue32536] ast and tokenize disagree about line number

2018-01-12 Thread Mark Shannon
New submission from Mark Shannon : This occurs (on linux at least) when the the end of line sequence `\r\r\n` occurs in a comment that is indented relative to the following lines. The attached file demonstrates the problem. -- components: Library (Lib) files: