Discussion:
pythonw.exe has stopped working
rahuldbhagat
2014-09-12 05:48:00 UTC
Permalink
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.
Rahul Bhagat
2014-09-12 08:57:21 UTC
Permalink
Post by rahuldbhagat
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
Steven D'Aprano
2014-09-12 10:14:20 UTC
Permalink
Post by rahuldbhagat
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.
Post by rahuldbhagat
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
Marko Rauhamaa
2014-09-12 11:33:17 UTC
Permalink
Post by Steven D'Aprano
Post by rahuldbhagat
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
Terry Reedy
2014-09-12 23:16:29 UTC
Permalink
Post by rahuldbhagat
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
Loading...