[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread BAHADIR
Change by BAHADIR : Removed file: https://bugs.python.org/file50179/IDLE.jpeg ___ Python tracker <https://bugs.python.org/issue44736> ___ ___ Python-bugs-list mailin

[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread BAHADIR
BAHADIR added the comment: >>> print("1\t1") 1 1 >>> print("12\t1") 12 1 >>> print("123\t1") 123 1 >>> print("1234\t1") 12341 >>> print("12345\t1") 12345 1 >>> p

[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread BAHADIR
Change by BAHADIR : Added file: https://bugs.python.org/file50179/IDLE.jpeg ___ Python tracker <https://bugs.python.org/issue44736> ___ ___ Python-bugs-list mailin

[issue44736] '\t' Escape Sequence behaving differently.

2021-07-25 Thread BAHADIR
New submission from BAHADIR : While working on several examples I noticed that ASCII Horizontal Tab (TAB) gives different results for different values. When I looked at the rfc documents, I couldn't see any result about its calculation. The calculation method I noticed myself is as fo