Message306399
>>> exec('''if 1:
... print(1)
... \tprint(2)
... ''')
1
2
The first indented line uses 8 spaces. The second indented line uses 7 spaces + tabulation. Indentations are different, but TabError is not raised. |
|
Date |
User |
Action |
Args |
2017-11-16 21:36:43 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, vstinner |
2017-11-16 21:36:43 | serhiy.storchaka | set | messageid: <1510868203.24.0.213398074469.issue32053@psf.upfronthosting.co.za> |
2017-11-16 21:36:43 | serhiy.storchaka | link | issue32053 messages |
2017-11-16 21:36:43 | serhiy.storchaka | create | |
|