Message321126
| Author |
grantjenks |
| Recipients |
grantjenks, terry.reedy |
| Date |
2018年07月05日.19:05:33 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1530817533.77.0.56676864532.issue34055@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
IDLE inserts an extra blank line after the prompt after encountering a SyntaxError:
```
>>> 1 + 2
3
>>> print('Hello')
Hello
v-- Missing single quote!
>>> d = {1: 'uno', 2: 'dos', 3: 'tres}
SyntaxError: EOL while scanning string literal
>>> print('Hello')
<-- Extra blank line and whitespace (tab and space).
Hello
>>> 1 + 2
<-- Extra blank line and whitespace (tab and space).
3
>>>
```
Notice the line starting with ">>> d =" above contains a missing single quote which causes a "SyntaxError: EOL while scanning string literal". This causes IDLE to insert extra blank lines with one tab and one space after every input.
The old behavior looked like:
```
>>> 1 + 2
3
>>> print('Hello')
Hello
>>> d = {1: 'uno', 2: 'dos', 3: 'tres}
SyntaxError: EOL while scanning string literal
>>> print('Hello')
Hello
>>> 1 + 2
3
``` |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2018年07月05日 19:05:33 | grantjenks | set | recipients:
+ grantjenks, terry.reedy |
| 2018年07月05日 19:05:33 | grantjenks | set | messageid: <1530817533.77.0.56676864532.issue34055@psf.upfronthosting.co.za> |
| 2018年07月05日 19:05:33 | grantjenks | link | issue34055 messages |
| 2018年07月05日 19:05:33 | grantjenks | create |
|