Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.datemas.de!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:Windows': 0.02; 'subject:code': 0.07; 'turtle': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'jan': 0.12; 'windows': 0.15; 'idle.': 0.16; 'reboot': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'stdlib.': 0.16; 'wrote:': 0.18; '(not': 0.18; 'module': 0.19; 'example': 0.22; 'import': 0.22; 'header:User-Agent:1': 0.23; 'source': 0.25; 'nearly': 0.26; 'possibly': 0.26; 'code:': 0.26; 'header:X -Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'file': 0.32; 'running': 0.33; 'problem': 0.35; 'problem.': 0.35; 'there': 0.35; 'interaction': 0.36; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'does': 0.39; 'bad': 0.39; 'received:71': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'most': 0.60; 'happen': 0.63; 'world': 0.66; 'here': 0.66; 'circle': 0.68; 'nice,': 0.84; 'received:fios.verizon.net': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Terry Reedy Subject: Re: Windows automatic rebooting due to faulty code Date: Fri, 23 May 2014 15:19:52 -0400 References: <921d8985-0730-4604-985d-7e77a4a4b45f@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: pool-71-175-90-87.phlapa.fios.verizon.net User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 In-Reply-To: <921d8985-0730-4604-985d-7e77a4a4b45f@googlegroups.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 16 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1400872824 news.xs4all.nl 2941 [2001:888:2000:d::a6]:58239 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:71941 On 5/23/2014 12:08 PM, Ronak Dhakan wrote: > It is a small file to draw an approximate circle using Turtle. > The reboot does not happen consistently. Here is the code: > http://pastebin.com/8T3aRCEd from swampy.TurtleWorld import * world = TurtleWorld() This is not the turtle module in the stdlib. It is most like the source of your reboot problem. Report your problem to the author. Also try running your example in the Windows console. (Not nearly as nice, I know.) There might possibly be a bad interaction with Idle. -- Terry Jan Reedy