This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients eric.smith, shamon51, terry.reedy
Date 2017-11-18.05:25:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510982712.94.0.213398074469.issue32022@psf.upfronthosting.co.za>
In-reply-to
Content
The RESTART line means that you ran this in IDLE and that your program crashed the separate (sub)process that was running your code.  When IDLE notices this, it starts a new subprocess.

To test whether this is an IDLE-only problem, I ran your code without IDLE.

C:\Users\Terry>python -i -m tem
>>> doFind()
R 6 12
R 12 22
R 21 32
C 10 21
C 13 22
C 16 23

and quickly got the the Windows 'Program has stopped running' box, with no Python error message.  Ditto when run on 3.7.0a2.

Since this is not an IDLE issue, I revised the title.
History
Date User Action Args
2017-11-18 05:25:13terry.reedysetrecipients: + terry.reedy, eric.smith, shamon51
2017-11-18 05:25:12terry.reedysetmessageid: <1510982712.94.0.213398074469.issue32022@psf.upfronthosting.co.za>
2017-11-18 05:25:12terry.reedylinkissue32022 messages
2017-11-18 05:25:11terry.reedycreate