473,387 Members | 2,436 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Problem on win xp and run time error

Hi list,
just found in this moment that my applications stop to work with win xp
and receive this error:

"""
This application has requested the Runtime to terminate it in an unusual
way. Please contact the application's support team for more information.
"""

(Note that the same application [python source code + py2exe] with
python 2.3.x work well!)

With a little google search I found that this is a win xp sp2 problem
*without* apparently solution :(

http://support.microsoft.com/kb/884538/en-us

I see that the page says:
"""
This problem may occur when you use the /GR and the /MD compiler switches
"""

so my question are: python are compiled with that switches? If yes, can
someone try to compile it without that switches, if it can of course,
and publish the new installer? I'm can't work until microsoft solve that
issue! :(

Thanks,
Michele
Jun 16 '06 #1
6 2194
On Fri, Jun 16, 2006 at 06:11:53PM +0000, Michele Petrazzo wrote:
Hi list,
just found in this moment that my applications stop to work with win xp
and receive this error:

"""
This application has requested the Runtime to terminate it in an unusual
way. Please contact the application's support team for more information.
"""

(Note that the same application [python source code + py2exe] with
python 2.3.x work well!) Don't use the single file executatble option with py2exe and the problem will
go away.

-Chris
With a little google search I found that this is a win xp sp2 problem
*without* apparently solution :(

http://support.microsoft.com/kb/884538/en-us

I see that the page says:
"""
This problem may occur when you use the /GR and the /MD compiler switches
"""

so my question are: python are compiled with that switches? If yes, can
someone try to compile it without that switches, if it can of course,
and publish the new installer? I'm can't work until microsoft solve that
issue! :(

Thanks,
Michele
--
http://mail.python.org/mailman/listinfo/python-list

Jun 16 '06 #2
Michele Petrazzo wrote:
just found in this moment that my applications stop to work with win xp
and receive this error:

"""
This application has requested the Runtime to terminate it in an unusual
way. Please contact the application's support team for more information.
"""

(Note that the same application [python source code + py2exe] with
python 2.3.x work well!)

With a little google search I found that this is a win xp sp2 problem
*without* apparently solution :(

http://support.microsoft.com/kb/884538/en-us

I see that the page says:
"""
This problem may occur when you use the /GR and the /MD compiler switches
"""


hint 1: the use of "may" in that sentence is intentional.

hint 2: python 2.4 wasn't built with Visual C++ 6.0 (but python 2.3 was)

hint 3: on Windows, this message is displayed when the "abort" function
is called (including when an assert fails):

http://msdn2.microsoft.com/en-us/library/k089yyh0.aspx

the python interpreter will call abort() when it stumbles upon a fatal
error (Py_FatalError), or when an internal assertion fails. when this
happens, the program will print a "Fatal Python error" message to both
stderr and the debug console before it calls abort.

</F>

Jun 16 '06 #3
Chris Lambacher wrote:
On Fri, Jun 16, 2006 at 06:11:53PM +0000, Michele Petrazzo wrote:
Hi list, just found in this moment that my applications stop to
work with win xp and receive this error:

""" This application has requested the Runtime to terminate it in
an unusual way. Please contact the application's support team for
more information. """

(Note that the same application [python source code + py2exe] with
python 2.3.x work well!) Don't use the single file executatble option with py2exe and the
problem will go away.


I'm not using that option! (that has also problems on win9x with python+wx)

I'm not using any of the "bundle_files" options, but only:
zipfile = "lib/libraries.zip"
-Chris


Thanks,
Michele
Jun 17 '06 #4
Fredrik Lundh wrote:
I see that the page says: """ This problem may occur when you use
the /GR and the /MD compiler switches """
hint 1: the use of "may" in that sentence is intentional.


This is the only, real, answer/solution that I found on internet, so I
thought that was the problem. This also convince me because the page
said that this happen only on win xp sp2, that is the platform where the
problem happens! All work on win2k!

hint 2: python 2.4 wasn't built with Visual C++ 6.0 (but python 2.3
was)

But, I have problems only on with 2.4! With 2.3, and the *same* code,
all work!
hint 3: on Windows, this message is displayed when the "abort"
function is called (including when an assert fails):

http://msdn2.microsoft.com/en-us/library/k089yyh0.aspx

the python interpreter will call abort() when it stumbles upon a
fatal error (Py_FatalError), or when an internal assertion fails.
when this happens, the program will print a "Fatal Python error"
message to both stderr and the debug console before it calls abort.
Normally py2exe catch that messages and show them when the program are
closed, but in this case, I don't see any message :(

Is it possible that some, but I don't know what, can be modified from
py2.3 to py2.4 and now my program wont work?
Is there some tried that I can do for try to solve my issue?

</F>


Thanks,
Michele
Jun 17 '06 #5
On Sat, Jun 17, 2006 at 07:32:34AM +0000, Michele Petrazzo wrote:
Chris Lambacher wrote:
On Fri, Jun 16, 2006 at 06:11:53PM +0000, Michele Petrazzo wrote:
Hi list, just found in this moment that my applications stop to
work with win xp and receive this error:

""" This application has requested the Runtime to terminate it in
an unusual way. Please contact the application's support team for
more information. """

(Note that the same application [python source code + py2exe] with
python 2.3.x work well!) Don't use the single file executatble option with py2exe and the
problem will go away.


I'm not using that option! (that has also problems on win9x with python+wx)

Do you get the problem when you are not using py2exe? That will be your real
clue about what the culprit is.
I'm not using any of the "bundle_files" options, but only:
zipfile = "lib/libraries.zip"

Try setting that to the default value for the moment and see if it gets you
anywhere. You might also want to try an older version of py2exe. I would
blame an interaction between py2exe and some extension you are using, unless
you can get it to happen without py2exe.
Jun 20 '06 #6
Chris Lambacher wrote:
On Sat, Jun 17, 2006 at 07:32:34AM +0000, Michele Petrazzo wrote:
Chris Lambacher wrote:
On Fri, Jun 16, 2006 at 06:11:53PM +0000, Michele Petrazzo wrote:

Hi list, just found in this moment that my applications stop to
work with win xp and receive this error:

""" This application has requested the Runtime to terminate it
in an unusual way. Please contact the application's support
team for more information. """

(Note that the same application [python source code + py2exe]
with python 2.3.x work well!)
Don't use the single file executatble option with py2exe and the
problem will go away.

I'm not using that option! (that has also problems on win9x with
python+wx)

Do you get the problem when you are not using py2exe? That will be
your real clue about what the culprit is.


No, but...
I'm not using any of the "bundle_files" options, but only: zipfile
= "lib/libraries.zip"

Try setting that to the default value for the moment and see if it
gets you anywhere. You might also want to try an older version of
py2exe. I would blame an interaction between py2exe and some
extension you are using, unless you can get it to happen without
py2exe.


Was, I think, a win problem because after the last "windows update" all
now work!

Thanks for the support,
Michele
Jun 22 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: sajidazmi | last post by:
Hi, I'm coding an Stock Order Entry System. The problem I'm facing is when I'm passing a pointer to one class, the pointer gets corrupted. I'm not able to see why? Here is the code, please tell...
5
by: Carmine Cairo | last post by:
Hi, I'm working on a project and today I've note a little problem during the compile fase. Here a little piece of code: // 1st version welldone = 0; size = p->getSize(); backbone = new...
10
by: DataBard007 | last post by:
Hello Access Gurus: I use Win98SE and Access97. I just built a simple Access97 application which holds all contact information for my personal contacts, such as first name, last name, address,...
4
by: Bradley Burton | last post by:
I'm using Allen Brown's code for audit logging (http://allenbrowne.com/AppAudit.html), but I'm having a problem. My aud table doesn't populate with the tracking info at all. I think it might be a...
28
by: Jon Davis | last post by:
If I have a class with a virtual method, and a child class that overrides the virtual method, and then I create an instance of the child class AS A base class... BaseClass bc = new ChildClass();...
4
by: Trond Meistad | last post by:
I have a website where I run a simple asp.net web application. On Sunday night, requests to this webapplication started to time out. After much debuggeing with no result, I created a new...
3
by: Sean Shanny | last post by:
To all, We are running postgresql 7.4.1 on an G5 with dual procs, OSX 10.3.3 server, 8GB mem, attached to a fully configured 3.5TB XRaid box via fibre channel. I think we have run into this...
1
by: sherifbk | last post by:
Problem description ============== - I have 4 clients and 1 server (SQL server) - 3 clients are Monitoring console 1 client is operation console - Monitoring console collects some data from...
2
osward
by: osward | last post by:
Hello there, I am using phpnuke 8.0 to build my website, knowing little on php programing. I am assembling a module for my member which is basically cut and paste existing code section of...
5
by: jbenner | last post by:
I have opened a PMR for this with IBM, and am not asking for advice from the DB2 DBA community. I am posting this as an FYI that DB2 Health Monitor, even at the latest version of DB2, still can cause...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.