Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!goblin1!goblin2!goblin.stu.neva.ru!feeder1.cambriumusenet.nl!feed.tweaknews.nl!194.109.133.84.MISMATCH!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'subject:Python': 0.05; 'python': 0.09; '22,': 0.09; 'blue': 0.09; 'sep': 0.09; 'itself.': 0.11; 'library': 0.15; 'sat,': 0.15; '12:04': 0.16; '2.7.3': 0.16; 'buggy': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'machine?': 0.16; 'somehow.': 0.16; 'wrote:': 0.17; 'instance,': 0.17; 'intel': 0.17; 'issue,': 0.17; 'memory': 0.18; 'windows': 0.19; 'are:': 0.20; 'all,': 0.21; 'bit': 0.21; 'programming': 0.23; "i've": 0.23; 'somewhere': 0.24; 'script': 0.24; 'header:In-Reply-To:1': 0.25; 'am,': 0.27; 'core': 0.27; 'library.': 0.27; 'message- id:@mail.gmail.com': 0.27; 'run': 0.28; 'cpu': 0.29; "i'm": 0.29; 'maybe': 0.29; 'code': 0.31; 'info': 0.32; "aren't": 0.33; 'ram': 0.33; 'problem': 0.33; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'screen': 0.34; 'received:209.85': 0.35; 'but': 0.36; 'url:org': 0.36; 'compare': 0.36; 'modules': 0.36; 'test': 0.36; 'available.': 0.37; 'ones': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'header:Received:5': 0.40; 'help': 0.40; 'your': 0.60; 'first': 0.61; 'solve': 0.62; 'more': 0.63; 'url:a': 0.72; 'url:jpg': 0.84; 'ram,': 0.84; 'url:imageshack': 0.84; 'on?': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=n8UndmT/ZhNKN2nEEgIlRMyHTCIT4jqi4RgD40134oA=; b=DpojSehCrNukQCOKr3GfDu6XtT6YWQgukPGwVrwWA+mGRgbgxkmGir+PCaPWOAqKp2 J8tHfjKQgunzi5vnXh5WxVZcbhyzFNp+eeAywXPuuemvrMtkHcsGJcVh8fyS8aavDoqG LGEG81xRpSNxv0Lzw4RKlMygZpNEIao38+naaP4PvCL7XkD3L2tvJP2JTqqquWA/Bvja xft22+jv4qYhILayX8BJ1sOWsjRksxBZ3Ep8eQ15YDtdjHZj4ONMJLYvlri8Zx3AB75w FMKpuO788R9rMtcWJ/CNuGPyxJWGyRcsMYZJ2IfxvMbJY6e/VqsvSoBg5MwWi5m8gm/U +8IQ== MIME-Version: 1.0 In-Reply-To: <7c8701cc-1bc5-46ee-a83a-3e9a038ceada@googlegroups.com> References: <7c8701cc-1bc5-46ee-a83a-3e9a038ceada@googlegroups.com> Date: Sat, 22 Sep 2012 00:29:14 +1000 Subject: Re: Blue Screen Python From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 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: 32 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1348237758 news.xs4all.nl 6908 [2001:888:2000:d::a6]:53252 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:29641 On Sat, Sep 22, 2012 at 12:04 AM, mikcec82 wrote: > Hallo to all, > > I'm using Python 2.7.3 with Windows 7 @ 64 bit > and an Intel Core i3 -2350M CPU @2.30GHz 2.3GHz. > > Sometimes, when I'm programming in Python on my screen compare this blue screen: > http://imageshack.us/a/img228/8352/48579647436249494527021.jpg > > Can you help on what is the issue, and how I can solve it? > > If you need more info I'm available. Ouch, that's not fun. I've never actually seen Python bsod by itself. My first guesses are: 1) It's a buggy library that you're using with Python. Do you know what modules your code calls on? Mainly ones that aren't part of the standard library. 2) It's unrelated, but maybe triggered somehow. For instance, your Python program might be consuming a lot of RAM, which causes a problem when you make use of a faulty bit of memory somewhere in the higher addresses. Have you run a RAM test on that machine? This is a well-respected one: http://www.memtest.org/ Alternatively, can you narrow the problem down to a particular script that will repeatedly cause the BSOD? ChrisA