473,786 Members | 2,368 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 2228
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_fil es" 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_fil es" 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_fil es" 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
1269
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 me what I'm doing wrong. Problem are marked as <== in the code. /** Class Header **/ /* * Symbol
5
3336
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 rightType;
10
5798
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, city, state, etc. When the user wants to search for a particular record, he does two things: 1. On the form is a text box on which he enters the text he is searching for.
4
2747
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 problem with the table set-up. I just can't find the problem. These are the fields in my table: Table1 ID (primary key) AutoNumber
28
5223
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(); .... and then call the virtual method, why is it that the base class's method is called instead of the overridden method? How do I fix this if I don't know at runtime what the child class is? I'm using Activator.CreateInstance() to load the...
4
1890
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 webapplication with one aspx page that displays only a text. I uploaded this page and the dll, but requests to this page also times out. So my problem seems to be: If I request an aspx page, this request times out. The page gives no error mesage, it...
3
1869
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 issue before but I thought the code was fixed. :-( I have the following SQL:
1
5123
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 the control unit and store them into the Sql server - The operation console then retrieve this data from the sql for reporting and statistics purposes - I am using ODBC connection - The problem is that the operation console is not able to...
2
2882
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 various module that I found it useful. Here is the 1st problem I encounter: I had a function to edit a event row form the database which is fine with me, than I pass on the code to a function that save(update) the data to the database.
5
14816
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 huge problems with slow connect times and heavy resource locking in high concurrency / high transaction volume environments. I have an OLTP with 30-90 transactions per second activity, and start of Health Monitor every 2 hours was crashing our...
0
9647
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10163
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10104
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9959
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7510
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6744
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5397
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5532
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3668
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.