Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #77797 > unrolled thread

pythonw.exe has stopped working

Started byrahuldbhagat@gmail.com
First post2014-09-11 22:48 -0700
Last post2014-09-12 19:16 -0400
Articles 6 — 6 participants

Back to article view | Back to comp.lang.python


Contents

  pythonw.exe has stopped working rahuldbhagat@gmail.com - 2014-09-11 22:48 -0700
    Re: pythonw.exe has stopped working Rahul Bhagat <rahuldbhagat@gmail.com> - 2014-09-12 01:57 -0700
      Re: pythonw.exe has stopped working Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2014-09-12 19:15 -0400
    Re: pythonw.exe has stopped working Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-09-12 20:14 +1000
      Re: pythonw.exe has stopped working Marko Rauhamaa <marko@pacujo.net> - 2014-09-12 14:33 +0300
    Re: pythonw.exe has stopped working Terry Reedy <tjreedy@udel.edu> - 2014-09-12 19:16 -0400

#77797 — pythonw.exe has stopped working

Fromrahuldbhagat@gmail.com
Date2014-09-11 22:48 -0700
Subjectpythonw.exe has stopped working
Message-ID<d3973bff-5c44-4fb1-b554-21562160e049@googlegroups.com>

Hello Folks,

I'm using RIDE -- Robot Framework Test Data Editor
RIDE 1.3 running on Python 2.7.6. 

When I click on some of my test case the RIDE GUI hangs and gives bellow error message.


[Window Title]
pythonw.exe

[Main Instruction]
pythonw.exe has stopped working

[Content]
A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.

[Close program]


It's strange that while it's able to open other test cases but fails on one particular test case. The distinguishing  fact about the test case is that it is a big one using lots of keywords.

I know it might work if I split my test case but have any of you encountered this problem and knows how to fix it ? some fix like providing more memory or specifying some parameter when pythonw.exe starts?


Thank you very much  in advance.

Cheers,

Rahul.

[toc] | [next] | [standalone]


#77802

FromRahul Bhagat <rahuldbhagat@gmail.com>
Date2014-09-12 01:57 -0700
Message-ID<45201191-331a-44a8-aa83-d49186aa3742@googlegroups.com>
In reply to#77797
On Friday, 12 September 2014 11:18:25 UTC+5:30, Rahul Bhagat  wrote:
> Hello Folks,
> 
> 
> 
> I'm using RIDE -- Robot Framework Test Data Editor
> 
> RIDE 1.3 running on Python 2.7.6. 
> 
> 
> 
> When I click on some of my test case the RIDE GUI hangs and gives bellow error message.
> 
> 
> 
> 
> 
> [Window Title]
> 
> pythonw.exe
> 
> 
> 
> [Main Instruction]
> 
> pythonw.exe has stopped working
> 
> 
> 
> [Content]
> 
> A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.
> 
> 
> 
> [Close program]
> 
> 
> 
> 
> 
> It's strange that while it's able to open other test cases but fails on one particular test case. The distinguishing  fact about the test case is that it is a big one using lots of keywords.
> 
> 
> 
> I know it might work if I split my test case but have any of you encountered this problem and knows how to fix it ? some fix like providing more memory or specifying some parameter when pythonw.exe starts?
> 
> 
> 
> 
> 
> Thank you very much  in advance.
> 
> 
> 
> Cheers,
> 
> 
> 
> Rahul.



UPDATE:


Additional Windows Log


Problem signature:
  Problem Event Name:	APPCRASH
  Application Name:	pythonw.exe
  Application Version:	0.0.0.0
  Application Timestamp:	527fcf67
  Fault Module Name:	wxmsw28uh_core_vc.dll
  Fault Module Version:	2.8.12.1
  Fault Module Timestamp:	4e21188a
  Exception Code:	c0000005
  Exception Offset:	000000000002516e
  OS Version:	6.1.7601.2.1.0.256.48
  Locale ID:	1033
  Additional Information 1:	af6f
  Additional Information 2:	af6f3f0509d68fb0a703e2e9a01d8095
  Additional Information 3:	14ba
  Additional Information 4:	14ba7bfab2274826d4d9f81374905fca

Read our privacy statement online:
  http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

If the online privacy statement is not available, please read our privacy statement offline:
  C:\Windows\system32\en-US\erofflps.txt

[toc] | [prev] | [next] | [standalone]


#77823

FromDennis Lee Bieber <wlfraed@ix.netcom.com>
Date2014-09-12 19:15 -0400
Message-ID<mailman.13984.1410563675.18130.python-list@python.org>
In reply to#77802
On Fri, 12 Sep 2014 01:57:21 -0700 (PDT), Rahul Bhagat
<rahuldbhagat@gmail.com> declaimed the following:


>
>
>Problem signature:
>  Problem Event Name:	APPCRASH
>  Application Name:	pythonw.exe
>  Application Version:	0.0.0.0
>  Application Timestamp:	527fcf67
>  Fault Module Name:	wxmsw28uh_core_vc.dll

	Well, according to Google that file is part of wxWidgets... 

	Try running using a regular console and "python" rather than "pythonw"
-- it MIGHT produce some informative messages (or not).
-- 
	Wulfraed                 Dennis Lee Bieber         AF6VN
    wlfraed@ix.netcom.com    HTTP://wlfraed.home.netcom.com/

[toc] | [prev] | [next] | [standalone]


#77803

FromSteven D'Aprano <steve+comp.lang.python@pearwood.info>
Date2014-09-12 20:14 +1000
Message-ID<5412c77d$0$29974$c3e8da3$5496439d@news.astraweb.com>
In reply to#77797
rahuldbhagat@gmail.com wrote:

> It's strange that while it's able to open other test cases but fails on
> one particular test case. The distinguishing  fact about the test case is
> that it is a big one using lots of keywords.

Sounds like you've run out of memory, and Windows has killed the process.

> I know it might work if I split my test case but have any of you
> encountered this problem and knows how to fix it ? some fix like providing
> more memory or specifying some parameter when pythonw.exe starts?

Install more memory?

It might help if you show us the code that crashes.


-- 
Steven

[toc] | [prev] | [next] | [standalone]


#77805

FromMarko Rauhamaa <marko@pacujo.net>
Date2014-09-12 14:33 +0300
Message-ID<877g199ipu.fsf@elektro.pacujo.net>
In reply to#77803
Steven D'Aprano <steve+comp.lang.python@pearwood.info>:

> rahuldbhagat@gmail.com wrote:
>> encountered this problem and knows how to fix it ? some fix like
>> providing more memory or specifying some parameter when pythonw.exe
>> starts?
>
> Install more memory?
>
> It might help if you show us the code that crashes.

Reminds me of a Q&A column from my university's CS student newsletter in
the 80's. It went something like this:

   Q. I finally managed to save enough money to buy a home computer. I
      read the user manual and wrote my first BASIC program as follows:

         20 GOTO 20

      I started the program with the RUN command, and it has been
      running since. What do I do now?

      I am new to computers, so no tech jargon, please.

   A. You can't expect shorter latencies in a computer in this price
      range. What we suggest, at a bare minimum, is a RAM upgrade to at
      least 64 kilobytes. The CPU might need to be replaced with the
      recently released 8 MHz model as well. [...]


Marko

[toc] | [prev] | [next] | [standalone]


#77824

FromTerry Reedy <tjreedy@udel.edu>
Date2014-09-12 19:16 -0400
Message-ID<mailman.13985.1410563821.18130.python-list@python.org>
In reply to#77797
On 9/12/2014 1:48 AM, rahuldbhagat@gmail.com wrote:
>
>
> Hello Folks,
>
> I'm using RIDE -- Robot Framework Test Data Editor RIDE 1.3 running
> on Python 2.7.6.
>
> When I click on some of my test case the RIDE GUI hangs and gives
> bellow error message.

Run RIDE with python, not pythonw, from a command prompt, and you should 
be error messages from python.


-- 
Terry Jan Reedy

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web