[issue13081] Crash in Windows with unknown cause

2018-09-03 Thread Zachary Ware


Zachary Ware  added the comment:

As far as I can tell, this was an application bug in multiprocessing cleanup 7 
years ago.  I'm not sure there's really even anything to add to the docs for 
this, but if anyone disagrees or produces a patch, please reopen.

--
nosy: +davin, pitrou, zach.ware
resolution:  -> works for me
stage:  -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2014-07-11 Thread STINNER Victor

STINNER Victor added the comment:

Serhiy implemented the FileIO class in pure Python: see the issue #21859 (patch 
under review).

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2014-07-11 Thread STINNER Victor

Changes by STINNER Victor victor.stin...@gmail.com:


--
Removed message: http://bugs.python.org/msg222751

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2014-07-10 Thread Mark Lawrence

Changes by Mark Lawrence breamore...@yahoo.co.uk:


--
assignee:  - docs@python
components: +Documentation -Windows
nosy: +docs@python

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-10-07 Thread Terry J. Reedy

Terry J. Reedy tjre...@udel.edu added the comment:

If I understand the messages, this is more a program bug than a Python bug and 
the 'fix' for this tracker would be a doc patch. Adding one would be welcome.

--
nosy: +terry.reedy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-10-05 Thread Amorilia

Amorilia amorilia.game...@gmail.com added the comment:

Thanks for also trying it out, Brian.

I feel there's little more I can do. I guess the multiprocessing module could 
be documented a bit better that join() ought to be called before the pool is 
deleted? Currently, the docs merely say:

Wait for the worker processes to exit. One must call close() or terminate() 
before using join(). 
(http://docs.python.org/library/multiprocessing.html#multiprocessing.pool.multiprocessing.Pool.join)

Something along the following lines could be added:

You must call join() when you no longer need the pool; otherwise, zombie 
processes may keep running.

I'm happy to provide a patch, if needed.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-10-04 Thread Amorilia

Amorilia amorilia.game...@gmail.com added the comment:

Quick update: apparently, fixing another seemingly unrelated bug, fixed this 
crashing issue as well for rlibiez. Here's relevant the commit:

https://github.com/amorilia/pyffi/commit/bd7886eefedfce8fb108c4701cf0467e2a707907

Basically, the problem was with multiprocessing.Pools not getting closed and 
joined.

I'm attaching a script (poolcrash.py) which, theoretically, ought to reproduce 
the crash - although it doesn't quite reproduce it on my machine; I'm running 
out of memory and my machine just hangs desperately accessing the swap file 
before anything happens...

Beware that running the bugged script may force you perform a hard reboot of 
your system, particularly if you wait until all physical memory is used up by 
zombie processes.

--
Added file: http://bugs.python.org/file23314/poolcrash.py

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-10-04 Thread Brian Curtin

Brian Curtin br...@python.org added the comment:

I tried that script on 2.7 and like it did for you, it just ran until my 
machine became unusable.

On 3.x I think I got a RuntimeError after a while, but I forgot exactly what 
happened since the machine ended up being hosed later from the 2.7 run. In any 
event, it certainly didn't crash there and only went a short time before 
erroring out with some exception.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-10-03 Thread Amorilia

Amorilia amorilia.game...@gmail.com added the comment:

I'm the author of the application. The tool is written in pure Python, and only 
uses libraries from stdlib.

It would be really nice to have a simple standalone script to reproduce the 
crash, however I am still trying to reproduce it myself. So far no success.

--
nosy: +amorilia

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-10-03 Thread Brian Curtin

Brian Curtin br...@python.org added the comment:

I recently created minidumper to write Visual Studio MiniDump files of 
interpreter crashes, but it's currently only available on 3.x. If I port it to 
2.x, you could add import minidumper;minidumper.enable() to the top of your 
script, then we could probably get somewhere with it.

An additional example script, possibly including sample data to run through it, 
would be even better.

--
nosy: +brian.curtin

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-10-03 Thread Santoso Wijaya

Santoso Wijaya santoso.wij...@gmail.com added the comment:

Without the aforementioned minidump library, you can also kick off the Python 
interpreter using a debugger (or have a debugger break into an already-running 
one) [1]. When the crash happens--presumably the debugger will break at this 
point--you can export the mini dump into a file for us to look at [2].

[1] I like using windbg 
(http://msdn.microsoft.com/en-us/windows/hardware/gg463009).

[2] It would be something like, `.dump /ma C:\path\to\crash.DMP`

--
nosy: +santa4nt

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-10-03 Thread Santoso Wijaya

Changes by Santoso Wijaya santoso.wij...@gmail.com:


--
type:  - crash

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-10-01 Thread STINNER Victor

STINNER Victor victor.stin...@haypocalc.com added the comment:

I suppose that the application uses extensions written in C and one on these 
extensions is buggy. Can you write a script to reproduce the bug without the 
application? If not, we cannot help you :-(

You may try the faulthandler to get more information:
https://github.com/haypo/faulthandler/wiki

--
nosy: +haypo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13081] Crash in Windows with unknown cause

2011-09-30 Thread Roger Libiez

New submission from Roger Libiez arthm...@gmail.com:

While using the application found at: 
https://sourceforge.net/tracker/?group_id=199269

The following Windows error dump generates itself while processing a batch of 
3D mesh files with it. I do not know the specifics about what process was 
underway or have any Python trace data to supply, but it can be reproduced 
reliably using the beta6 version of the application. The developer directed me 
here after I filed this bug: 
https://sourceforge.net/tracker/?func=detailaid=3415495group_id=199269atid=968813

The only known method I have to reproduce this is to run a batch process 
against a large number of mesh files. Windows memory usage is not anywhere 
close to the 2GB process limit.

Windows 7 Home Premium 64 bit, using 32 bit Python 2.7.2.

Problem signature:
Problem Event Name: APPCRASH
Application Name: python.exe
Application Version: 0.0.0.0
Application Timestamp: 4df4ba7c
Fault Module Name: python27.dll
Fault Module Version: 2.7.2150.1013
Fault Module Timestamp: 4df4ba7c
Exception Code: c005
Exception Offset: 0002a33f
OS Version: 6.1.7601.2.1.0.768.3
Locale ID: 1033
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

--
components: Windows
messages: 144707
nosy: rlibiez
priority: normal
severity: normal
status: open
title: Crash in Windows with unknown cause
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue13081
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com