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


Groups > comp.lang.python > #29027

Python2.4 on Win32 suddenly started crashing last night

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <python.list@tim.thechases.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.000
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'win32': 0.03; 'importing': 0.04; 'binary': 0.05; 'socket': 0.05; 'sys': 0.05; 'sys.platform': 0.07; 'python': 0.09; '2006,': 0.09; 'errno': 0.09; 'imported': 0.09; 'imports': 0.09; '"import': 0.16; "'win32'": 0.16; '-tkc': 0.16; '_socket': 0.16; '_ssl': 0.16; 'from:addr:python.list': 0.16; 'from:addr:tim.thechases.com': 0.16; 'from:name:tim chase': 0.16; 'message-id:@tim.thechases.com': 0.16; 'received:70.251': 0.16; 'received:dsl.rcsntx.swbell.net': 0.16; 'received:rcsntx.swbell.net': 0.16; 'received:swbell.net': 0.16; 'smtplib': 0.16; 'socket"': 0.16; 'socket.': 0.16; 'socket.py': 0.16; 'subject:night': 0.16; 'subject:started': 0.16; 'thanks,': 0.18; '>>>': 0.18; 'bit': 0.21; 'import': 0.21; 'libraries': 0.22; 'os,': 0.22; "i've": 0.23; 'external': 0.24; 'command': 0.24; 'tried': 0.25; 'header:User-Agent:1': 0.26; '"do': 0.29; 'crash': 0.29; "i'm": 0.29; "we're": 0.30; 'subject:last': 0.30; 'anybody': 0.32; 'to:addr:python-list': 0.33; '(with': 0.33; 'changed': 0.34; 'but': 0.36; 'modules': 0.36; 'turn': 0.36; 'does': 0.37; 'some': 0.38; 'nothing': 0.38; 'sure': 0.38; 'system.': 0.39; 'to:addr:python.org': 0.39; 'skip:u 10': 0.60; 'information': 0.63; 'more': 0.63; 'our': 0.65; 'night,': 0.65; 'due': 0.66; 'received:50.22': 0.84; 'to:name:python': 0.84; 'tied': 0.93
Date Thu, 13 Sep 2012 07:42:03 -0500
From Tim Chase <python.list@tim.thechases.com>
User-Agent Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.24) Gecko/20111120 Icedove/3.1.16
MIME-Version 1.0
To Python <python-list@python.org>
Subject Python2.4 on Win32 suddenly started crashing last night
Content-Type text/plain; charset=ISO-8859-1
Content-Transfer-Encoding 7bit
X-AntiAbuse This header was added to track abuse, please include it with any abuse report
X-AntiAbuse Primary Hostname - boston.accountservergroup.com
X-AntiAbuse Original Domain - python.org
X-AntiAbuse Originator/Caller UID/GID - [47 12] / [47 12]
X-AntiAbuse Sender Address Domain - tim.thechases.com
X-Source
X-Source-Args
X-Source-Dir
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.600.1347540061.27098.python-list@python.org> (permalink)
Lines 36
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1347540061 news.xs4all.nl 6962 [2001:888:2000:d::a6]:39331
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:29027

Show key headers only | View raw


I'm not sure if this is some Win32 update that was silently applied
by our netadmin, but when I simply "import socket" at the command
line, it's crashing (with the "Do you want to send this information
to Microsoft" debug/crash dialog).

It was working as of last night, and to the best of my knowledge,
nothing was changed on the system.  It took a while to track it
down, but it came from importing smtplib which in turn imports socket.

I've tried "import socket" and it crashes, but then tried importing
each of the modules that are imported in socket.py and nothing dies:

C:\Program Files\Python24\Lib>python
Python 2.4.3 (#69, Mar 29 2006, 17:35:34) [MSC v.1310 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import _socket
>>> from _socket import *
>>> import _ssl
>>> from _ssl import *
>>> import os, sys
>>> from errno import EBADF
>>> sys.platform
'win32'
>>> import socket
[win32 crash happens here]


Does anybody have any hints?  I'm unfortunately somewhat bound to
2.4 due to some external binary libraries that we're tied to.

Thanks,

-tkc

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Python2.4 on Win32 suddenly started crashing last night Tim Chase <python.list@tim.thechases.com> - 2012-09-13 07:42 -0500

csiph-web