[issue44818] '\t' (tab) support

2021-08-05 Thread Pooia
Pooia added the comment: Awesome, thanks! On Thu, Aug 5, 2021 at 3:14 PM Erlend E. Aasland wrote: > > Erlend E. Aasland added the comment: > > > I guess Python can't support tab > > AFAIK, it was a deliberate decision during the Python 2 => Python 3 > transition. > > > [...] it sounds Gnu

[issue44818] '\t' (tab) support

2021-08-05 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: > I guess Python can't support tab AFAIK, it was a deliberate decision during the Python 2 => Python 3 transition. > [...] it sounds Gnu nano mix spaces and tabs! You can set up GNU nano to expand tabs: $ echo "set tabstospaces" >> ~/.nanorc --

[issue44818] '\t' (tab) support

2021-08-05 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue44818] '\t' (tab) support

2021-08-05 Thread Pooia
Pooia added the comment: Got it, thanks! Erlend E. Aasland: > I'm guessing this has to do with mixing spaces and tabs when indenting code. This can be fixed in your text editor precisely! It's the problem. Thank you I guess Python can't support tab but it sounds Gnu nano mix spaces and tabs!

[issue44818] '\t' (tab) support

2021-08-04 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: I'm guessing this has to do with mixing spaces and tabs when indenting code. This can be fixed in your text editor. -- nosy: +erlendaasland status: open -> pending ___ Python tracker

[issue44818] '\t' (tab) support

2021-08-04 Thread Steven D'Aprano
Steven D'Aprano added the comment: On Wed, Aug 04, 2021 at 03:25:06PM +, Pooia wrote: > unexcpeted indent What about an unexpected indent? Please explain what you think the bug is in full sentences, showing some example code we can run. --

[issue44818] '\t' (tab) support

2021-08-04 Thread Eric V. Smith
Eric V. Smith added the comment: Please show us an example that demonstrates your problem. Show us the code you tried, what you expected to happen, and what actually happened. Otherwise we can’t help you. -- nosy: +eric.smith ___ Python tracker

[issue44818] '\t' (tab) support

2021-08-04 Thread Pooia
Pooia added the comment: unexcpeted indent On Tue, Aug 3, 2021 at 7:59 PM Serhiy Storchaka wrote: > > Change by Serhiy Storchaka : > > > -- > status: open -> pending > > ___ > Python tracker > >

[issue44818] '\t' (tab) support

2021-08-03 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44818] '\t' (tab) support

2021-08-03 Thread Steven D'Aprano
Steven D'Aprano added the comment: I don't understand what you mean by "Python can't use '\t' character." Can you demonstrate an example? It works for me. -- nosy: +steven.daprano ___ Python tracker

[issue44818] '\t' (tab) support

2021-08-03 Thread Pooia
New submission from Pooia : Python can't use '\t' character. if I want fix it I will work a long time but a shorter fashion is replacing '\t' character with 4 space (by first clause of pep: 8) -- components: Parser messages: 398815 nosy: Pooia, lys.nikolaou, pablogsal priority: