Message394888
| Author |
helpimnotdrowning |
| Recipients |
helpimnotdrowning |
| Date |
2021年06月02日.04:44:38 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1622609078.37.0.104205223264.issue44284@roundup.psfhosted.org> |
| In-reply-to |
| Content |
To reproduce (at least on Windows 10 w/ Python 3.9.4):
1) Make a python file:
while True:
print('hello')
2) Run the file via cmd
3) Edit the file (while it is still running):
while True:
print('goodbye')
print('hello')
then save it
4) ctrl+c in the cmd window to exit the script
5) The traceback will look something like this:
Traceback (most recent call last):
File "dfbssss.py", line 2, in <module>
print('goodbye')
KeyboardInterrupt
The traceback mentions the print('goodbye') even though it wasnt in the file when it was run. It still calls it line 2, which is the line the print('hello') was before adding the print('goodbye') |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2021年06月02日 04:44:38 | helpimnotdrowning | set | recipients:
+ helpimnotdrowning |
| 2021年06月02日 04:44:38 | helpimnotdrowning | set | messageid: <1622609078.37.0.104205223264.issue44284@roundup.psfhosted.org> |
| 2021年06月02日 04:44:38 | helpimnotdrowning | link | issue44284 messages |
| 2021年06月02日 04:44:38 | helpimnotdrowning | create |
|